From b8b4ddc7af8c5fd99732017080ede3228c98668c Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 17 Feb 2015 01:34:03 -0500 Subject: [PATCH] v0.2.4: corrected error with falling items, in accordance with the changes to honeypots --- .../shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java index 3cda76a03..335ca54b9 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java @@ -319,7 +319,7 @@ public class GameScene extends PixelScene { } else if (item instanceof Plant.Seed) { Dungeon.level.plant( (Plant.Seed)item, pos ); } else if (item instanceof Honeypot) { - (Honeypot)item.shatter( pos ); + Dungeon.level.drop(((Honeypot) item).shatter(null, pos), pos); } else { Dungeon.level.drop( item, pos ); }