diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java index 95ebc0ebe..401da8681 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java @@ -55,7 +55,7 @@ public class Statue extends Mob { do { weapon = (Weapon)Generator.random( Generator.Category.WEAPON ); - } while (!(weapon instanceof MeleeWeapon) || weapon.level() < 0); + } while (!(weapon instanceof MeleeWeapon) || weapon.cursed); weapon.identify(); weapon.enchant( Enchantment.random() );