diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Shopkeeper.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Shopkeeper.java index 841d48553..6cc22bbec 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Shopkeeper.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Shopkeeper.java @@ -103,7 +103,7 @@ public class Shopkeeper extends NPC { } public static boolean willBuyItem( Item item ){ - if (item.value() < 0) return false; + if (item.value() <= 0) return false; if (item.unique && !item.stackable) return false; if (item instanceof Armor && ((Armor) item).checkSeal() != null) return false; if (item.isEquipped(Dungeon.hero) && item.cursed) return false;