13
0
geforkt von Mirrors/Paper

SPIGOT-3040: Round health to float for validation

By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2017-01-28 11:41:09 +11:00
Ursprung 4166ac5145
Commit 634ad7d00e

Datei anzeigen

@ -91,8 +91,9 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
} }
public void setHealth(double health) { public void setHealth(double health) {
health = (float) health;
if ((health < 0) || (health > getMaxHealth())) { if ((health < 0) || (health > getMaxHealth())) {
throw new IllegalArgumentException("Health must be between 0 and " + getMaxHealth()); throw new IllegalArgumentException("Health must be between 0 and " + getMaxHealth() + "(" + health + ")");
} }
if (health == 0) { if (health == 0) {