SPIGOT-3998, MC-133373: Improve attributes

This commit is contained in:
md_5 2018-07-17 21:11:52 +10:00
parent 8c9dea83c3
commit a71d06a0c8

View File

@ -0,0 +1,11 @@
--- a/net/minecraft/server/AttributeRanged.java
+++ b/net/minecraft/server/AttributeRanged.java
@@ -31,6 +31,8 @@
}
public double a(double d0) {
+ if (d0 != d0) return getDefault(); // CraftBukkit
+
d0 = MathHelper.a(d0, this.a, this.b);
return d0;
}