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

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