v2.5.1: fixed loading order causing pylons to lose all debuffs on load

This commit is contained in:
Evan Debenham
2024-09-12 15:34:45 -04:00
parent d8c92096e3
commit 9e83f4cd96

View File

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