Paper/Spigot-Server-Patches/0054-Be-a-bit-more-informative-in-maxHealth-exception.patch

26 lines
1.3 KiB
Diff
Raw Normal View History

2017-08-03 16:36:06 +02:00
From f5d86c4e83afdc7def0962b105d37cb4e881a0c2 Mon Sep 17 00:00:00 2001
From: kashike <kashike@vq.lc>
2016-03-01 00:09:49 +01:00
Date: Thu, 3 Mar 2016 02:18:39 -0600
Subject: [PATCH] Be a bit more informative in maxHealth exception
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
2017-08-03 16:36:06 +02:00
index e2083fb29..f641c6dc1 100644
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
2017-08-03 16:36:06 +02:00
@@ -98,7 +98,10 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
public void setHealth(double health) {
2017-01-29 00:36:03 +01:00
health = (float) health;
if ((health < 0) || (health > getMaxHealth())) {
2017-01-29 00:36:03 +01:00
- throw new IllegalArgumentException("Health must be between 0 and " + getMaxHealth() + "(" + health + ")");
2016-03-01 00:09:49 +01:00
+ // Paper - Be more informative
+ throw new IllegalArgumentException("Health must be between 0 and " + getMaxHealth() + ", but was " + health
2016-03-01 00:09:49 +01:00
+ + ". (attribute base value: " + this.getHandle().getAttributeInstance(GenericAttributes.maxHealth).b()
+ + (this instanceof CraftPlayer ? ", player: " + this.getName() + ')' : ')'));
}
2017-05-05 01:08:52 +02:00
getHandle().setHealth((float) health);
--
2017-08-03 16:36:06 +02:00
2.13.3.windows.1