diff --git a/app/Game/Config/ItemSettings.js b/app/Game/Config/ItemSettings.js index 5706819..92331ab 100644 --- a/app/Game/Config/ItemSettings.js +++ b/app/Game/Config/ItemSettings.js @@ -265,7 +265,7 @@ function () { "category": "kitchen", "image": "banana.gif", - "weight": "1", + "weight": "3", "width": "5", "height": "9", diff --git a/app/Game/Core/GameObjects/Item.js b/app/Game/Core/GameObjects/Item.js index d848fa3..b766a6f 100644 --- a/app/Game/Core/GameObjects/Item.js +++ b/app/Game/Core/GameObjects/Item.js @@ -37,6 +37,9 @@ function (Parent, Box2D, Options, Settings, Exception, Nc, Assert) { this.createFixture(); this.body.ResetMassData(); this.flipDirection = 1; + if (this.body.GetMass() < 1) { + this.body.SetBullet(true); + } Nc.trigger(Nc.ns.core.game.gameObject.add, "animated", this); }