diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndBag.java b/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndBag.java index 03fb144f0..36f403e3b 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndBag.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndBag.java @@ -395,7 +395,7 @@ public class WndBag extends WndTabbed { protected boolean onLongClick() { if (listener == null && item.defaultAction != null) { hide(); - Dungeon.quickslot = item instanceof Wand ? item : item.getClass(); + Dungeon.quickslot = (item instanceof EquipableItem && !item.stackable) ? item : item.getClass(); QuickSlot.refresh(); return true; } else {