Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
at develop 28 lines 557 B view raw
1package net.minecraft.server; 2 3public class EntityWaterAnimal extends EntityCreature implements IAnimal { 4 5 public EntityWaterAnimal(World world) { 6 super(world); 7 } 8 9 public boolean b_() { 10 return true; 11 } 12 13 public void b(NBTTagCompound nbttagcompound) { 14 super.b(nbttagcompound); 15 } 16 17 public void a(NBTTagCompound nbttagcompound) { 18 super.a(nbttagcompound); 19 } 20 21 public boolean d() { 22 return this.world.containsEntity(this.boundingBox); 23 } 24 25 public int e() { 26 return 120; 27 } 28}