2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: kashike <kashike@vq.lc>
|
|
|
|
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
|
2022-09-12 13:31:45 +02:00
|
|
|
index 489153b3d22b37f01a027b0effc091d4715e7f7b..c2407224e8bc5e872e153de14090d60e66bb07bc 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2022-09-12 13:31:45 +02:00
|
|
|
@@ -102,7 +102,10 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
2021-06-11 14:02:28 +02:00
|
|
|
public void setHealth(double health) {
|
|
|
|
health = (float) health;
|
2021-06-12 02:57:04 +02:00
|
|
|
if ((health < 0) || (health > this.getMaxHealth())) {
|
|
|
|
- throw new IllegalArgumentException("Health must be between 0 and " + this.getMaxHealth() + "(" + health + ")");
|
2021-06-11 14:02:28 +02:00
|
|
|
+ // Paper - Be more informative
|
|
|
|
+ throw new IllegalArgumentException("Health must be between 0 and " + getMaxHealth() + ", but was " + health
|
2021-06-12 02:57:04 +02:00
|
|
|
+ + ". (attribute base value: " + this.getHandle().getAttribute(Attributes.MAX_HEALTH).getBaseValue()
|
|
|
|
+ + (this instanceof CraftPlayer ? ", player: " + this.getName() + ')' : ')'));
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
2021-08-25 09:59:26 +02:00
|
|
|
// during world generation, we don't want to run logic for dropping items and xp
|