Skip to content

Commit

Permalink
Make items less round
Browse files Browse the repository at this point in the history
  • Loading branch information
lorgan3 committed Mar 12, 2024
1 parent e6ef1e2 commit 945cf46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data/entity/baseItem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export abstract class BaseItem extends Container implements Syncable, Item {
mask: circle9x9,
gravity: 0.1,
airFriction: 0.99,
roundness: 0.4,
roundness: 0.3,
});
this.body.move(x, y);
this.position.set(x * 6, y * 6);
Expand Down Expand Up @@ -142,7 +142,7 @@ export abstract class BaseItem extends Container implements Syncable, Item {
Level.instance.remove(this);
}

activate(_: Character) {
activate(_?: Character) {
this.activateTime = this.time;
}

Expand Down

0 comments on commit 945cf46

Please sign in to comment.