geforkt von Mirrors/Paper
Be a bit more informative in maxHealth exception
Dieser Commit ist enthalten in:
Ursprung
73251dc451
Commit
f4a0ce454b
@ -108,7 +108,12 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
|||||||
@Override
|
@Override
|
||||||
public void setHealth(double health) {
|
public void setHealth(double health) {
|
||||||
health = (float) health;
|
health = (float) health;
|
||||||
Preconditions.checkArgument(health >= 0 && health <= this.getMaxHealth(), "Health value (%s) must be between 0 and %s", health, this.getMaxHealth());
|
// Paper start - Be more informative
|
||||||
|
Preconditions.checkArgument(health >= 0 && health <= this.getMaxHealth(),
|
||||||
|
"Health value (%s) must be between 0 and %s. (attribute base value: %s%s)",
|
||||||
|
health, this.getMaxHealth(), this.getHandle().getAttribute(Attributes.MAX_HEALTH).getBaseValue(), this instanceof CraftPlayer ? ", player: " + this.getName() : ""
|
||||||
|
);
|
||||||
|
// Paper end
|
||||||
|
|
||||||
// during world generation, we don't want to run logic for dropping items and xp
|
// during world generation, we don't want to run logic for dropping items and xp
|
||||||
if (this.getHandle().generation && health == 0) {
|
if (this.getHandle().generation && health == 0) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren