diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Belongings.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Belongings.java index 5222df7f0..84d124c1f 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Belongings.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Belongings.java @@ -186,7 +186,8 @@ public class Belongings implements Iterable { item.detachAll( backpack ); } } else if (item.unique) { - // Keep unique items + item.detachAll(backpack); + item.collect(); } else if (!item.isEquipped( owner )) { item.detachAll( backpack ); }