diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Wraith.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Wraith.java index 3e9855e47..6e49b03bc 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Wraith.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Wraith.java @@ -45,6 +45,8 @@ public class Wraith extends Mob { HP = HT = 1; EXP = 0; + + maxLvl = -2; flying = true; diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfWealth.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfWealth.java index 8238c88ef..1782c2093 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfWealth.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfWealth.java @@ -217,7 +217,7 @@ public class RingOfWealth extends Ring { case 0: default: return new StoneOfEnchantment(); case 1: - return new ScrollOfEnchantment(); + return new StoneOfEnchantment().quantity(2); case 2: return new PotionOfExperience(); case 3: