Yet another hotfix
This commit is contained in:
Binary file not shown.
@@ -90,7 +90,7 @@ public abstract class AbstractWave implements Wave
|
|||||||
|
|
||||||
// Boost health
|
// Boost health
|
||||||
int health = (int) Math.min(150D, e.getHealth() * healthMultiplier);
|
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.
|
// Grab a random target.
|
||||||
if (e instanceof Creature)
|
if (e instanceof Creature)
|
||||||
|
|||||||
Reference in New Issue
Block a user