v0.8.0: fixed newborn elementals despawning when an ankh reset occurs

This commit is contained in:
Evan Debenham 2019-12-10 15:22:38 -05:00
parent d96351c682
commit bd738bc0f8

View File

@ -221,6 +221,11 @@ public abstract class Elemental extends Mob {
properties.add(Property.MINIBOSS); properties.add(Property.MINIBOSS);
} }
@Override
public boolean reset() {
return true;
}
} }
public static class Frost extends Elemental { public static class Frost extends Elemental {