From 9a8ce2da3b5f380fdc4db26c6392c08481a85ac3 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 8 Jan 2026 16:21:22 -0500 Subject: [PATCH] v3.3.4: once again disallowed regrowth from spawning in tester area --- .../shatteredpixeldungeon/levels/VaultLevel.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/VaultLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/VaultLevel.java index 59443d64e..24e3ed466 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/VaultLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/VaultLevel.java @@ -32,6 +32,7 @@ import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.items.armor.Armor; import com.shatteredpixel.shatteredpixeldungeon.items.keys.GoldenKey; import com.shatteredpixel.shatteredpixeldungeon.items.trinkets.TrinketCatalyst; +import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfRegrowth; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.melee.MeleeWeapon; import com.shatteredpixel.shatteredpixeldungeon.levels.builders.Builder; import com.shatteredpixel.shatteredpixeldungeon.levels.builders.GridBuilder; @@ -127,6 +128,10 @@ public class VaultLevel extends CityLevel { Generator.Category.ARMOR, Generator.Category.WAND, Generator.Category.RING)); + //regrowth is disallowed as it can be used to farm HP regen + if (item instanceof WandOfRegrowth){ + continue; + } if (item.cursed){ item.cursed = false; if (item instanceof MeleeWeapon && ((MeleeWeapon) item).hasCurseEnchant()){