diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Thief.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Thief.java index 3a8519c24..a5419d626 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Thief.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Thief.java @@ -135,7 +135,7 @@ public class Thief extends Mob { Item item = hero.belongings.randomUnequipped(); - if (item != null && !item.unique ) { + if (item != null && !item.unique && item.level < 1 ) { GLog.w( TXT_STOLE, this.name, item.name() ); Dungeon.quickslot.clearItem( item );