mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-19 07:33:11 +01:00
SPIGOT-3998, MC-133373: Improve attributes
This commit is contained in:
parent
8c9dea83c3
commit
a71d06a0c8
1 changed files with 11 additions and 0 deletions
11
nms-patches/AttributeRanged.patch
Normal file
11
nms-patches/AttributeRanged.patch
Normal 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;
|
||||
}
|
Loading…
Reference in a new issue