SPIGOT-2824: Llama Strength API

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2016-11-23 10:27:49 +11:00
parent 90d646054a
commit 6b773ce751
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
--- a/net/minecraft/server/EntityLlama.java
+++ b/net/minecraft/server/EntityLlama.java
@@ -20,7 +20,7 @@
this.setSize(0.9F, 1.87F);
}
- private void p(int i) {
+ public void p(int i) { // PAIL: private-> public, rename
this.datawatcher.set(EntityLlama.bG, Integer.valueOf(Math.max(1, Math.min(5, i))));
}
@@ -30,7 +30,7 @@
this.p(1 + this.random.nextInt(i));
}
- public int dL() {
+ public int dL() { // PAIL: rename
return ((Integer) this.datawatcher.get(EntityLlama.bG)).intValue();
}