--- 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();
     }