From a43d621c0138110d2ec362b2eaa8f938f241bb49 Mon Sep 17 00:00:00 2001 From: feildmaster Date: Sun, 29 Jul 2012 02:33:13 -0500 Subject: Update CraftBukkit to Minecraft 1.3.1 --- src/main/java/net/minecraft/server/EntityMushroomCow.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/net/minecraft/server/EntityMushroomCow.java') diff --git a/src/main/java/net/minecraft/server/EntityMushroomCow.java b/src/main/java/net/minecraft/server/EntityMushroomCow.java index 21ced48b..7043682f 100644 --- a/src/main/java/net/minecraft/server/EntityMushroomCow.java +++ b/src/main/java/net/minecraft/server/EntityMushroomCow.java @@ -7,10 +7,10 @@ public class EntityMushroomCow extends EntityCow { public EntityMushroomCow(World world) { super(world); this.texture = "/mob/redcow.png"; - this.b(0.9F, 1.3F); + this.a(0.9F, 1.3F); } - public boolean b(EntityHuman entityhuman) { + public boolean c(EntityHuman entityhuman) { ItemStack itemstack = entityhuman.inventory.getItemInHand(); if (itemstack != null && itemstack.id == Item.BOWL.id && this.getAge() >= 0) { @@ -42,7 +42,7 @@ public class EntityMushroomCow extends EntityCow { entitycow.setPositionRotation(this.locX, this.locY, this.locZ, this.yaw, this.pitch); entitycow.setHealth(this.getHealth()); - entitycow.V = this.V; + entitycow.aq = this.aq; this.world.addEntity(entitycow); for (int i = 0; i < 5; ++i) { @@ -52,7 +52,7 @@ public class EntityMushroomCow extends EntityCow { return true; } else { - return super.b(entityhuman); + return super.c(entityhuman); } } -- cgit v1.2.3