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); }