From b5edad2b2e3e77e6d6ff69092d2e95fd948bf5e5 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 20 Feb 2019 13:18:55 -0500 Subject: [PATCH] v0.7.2: ring of wealth adjustments: - wraiths no longer progress special wealth drops - wealth no longer drops scroll of enchantment, to prevent exploits --- .../shatteredpixeldungeon/actors/mobs/Wraith.java | 2 ++ .../shatteredpixeldungeon/items/rings/RingOfWealth.java | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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: