diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Honeypot.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Honeypot.java index 9ad648925..05747a324 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Honeypot.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Honeypot.java @@ -70,7 +70,13 @@ public class Honeypot extends Item { detach( hero.belongings.backpack ); - shatter( hero, hero.pos ).collect(); + Item item = shatter( hero, hero.pos ); + if (!item.collect()){ + Dungeon.level.drop(item, hero.pos); + if (item instanceof ShatteredPot){ + ((ShatteredPot) item).dropPot(hero, hero.pos); + } + } hero.next();