From ca88370e48b3f52f408155a9e632167e05797ec1 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 27 Sep 2024 12:13:04 -0400 Subject: [PATCH] v2.5.3: increased the power of wraiths spawned by spectral necros --- .../shatteredpixeldungeon/actors/mobs/SpectralNecromancer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/SpectralNecromancer.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/SpectralNecromancer.java index 7cef26b9c..201c26268 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/SpectralNecromancer.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/SpectralNecromancer.java @@ -156,7 +156,7 @@ public class SpectralNecromancer extends Necromancer { spend(TICK); return; } - wraith.adjustStats(0); + wraith.adjustStats(4); Dungeon.level.occupyCell( wraith ); ((SpectralNecromancerSprite)sprite).finishSummoning();