public void tick() { if (health <= 0) { if (--hurtTime <= 0) { die(); remove(); } return; } super.tick(); if (--freezeTime > 0) return; }