Yet another hotfix

This commit is contained in:
Garbage Mule 2011-09-13 23:38:53 +02:00
parent 2ce02c9169
commit d927c147ec
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -90,7 +90,7 @@ public abstract class AbstractWave implements Wave
// Boost health
int health = (int) Math.min(150D, e.getHealth() * healthMultiplier);
e.setHealth(Math.min(1, health));
e.setHealth(Math.max(1, health));
// Grab a random target.
if (e instanceof Creature)