Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 20:40:07 +01:00
c02c01b2c5
Also removes our toggle for Spigot's option, I doubt anyone uses it.
23 Zeilen
1.1 KiB
Diff
23 Zeilen
1.1 KiB
Diff
From d99c319cab6c38f3ca1eb048cd23af14d66a25a6 Mon Sep 17 00:00:00 2001
|
|
From: kashike <kashike@vq.lc>
|
|
Date: Thu, 1 Sep 2016 09:51:31 +0000
|
|
Subject: [PATCH] Convert new health to a float during set
|
|
|
|
Convert the new health value to a float before doing any validation logic
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
|
index b807a3f..9e19e7c 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
|
@@ -91,6 +91,7 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
|
}
|
|
|
|
public void setHealth(double health) {
|
|
+ health = (float) health; // Paper - convert health to a float during set to avoid the below error
|
|
if ((health < 0) || (health > getMaxHealth())) {
|
|
// Paper - Be more informative
|
|
throw new IllegalArgumentException("Health must be between 0 and " + getMaxHealth() + ", but was " + health
|
|
--
|
|
2.10.0.windows.1
|
|
|