From 9e83f4cd96ce61f2ddb9a62a014522fc3e595c82 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 12 Sep 2024 15:34:45 -0400 Subject: [PATCH] v2.5.1: fixed loading order causing pylons to lose all debuffs on load --- .../shatteredpixel/shatteredpixeldungeon/actors/mobs/Pylon.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Pylon.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Pylon.java index 9d2a2a039..96462d50c 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Pylon.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Pylon.java @@ -228,8 +228,8 @@ public class Pylon extends Mob { @Override public void restoreFromBundle(Bundle bundle) { - super.restoreFromBundle(bundle); alignment = bundle.getEnum(ALIGNMENT, Alignment.class); + super.restoreFromBundle(bundle); targetNeighbor = bundle.getInt(TARGET_NEIGHBOUR); }