3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 21:40:08 +01:00
Paper/src/main/java/net/minecraft/server/EntityAnimals.java

46 Zeilen
1.1 KiB
Java

package net.minecraft.server;
2011-01-18 07:16:05 +01:00
//CraftBukkit start
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.craftbukkit.entity.CraftAnimals;
2011-01-18 07:16:05 +01:00
//CraftBukkit end
public abstract class EntityAnimals extends EntityCreature implements IAnimals {
public EntityAnimals(World world) {
super(world);
//CraftBukkit start
CraftServer server = ((WorldServer) this.l).getServer();
this.bukkitEntity = new CraftAnimals(server, this);
//CraftBukkit end
}
protected float a(int i, int j, int k) {
if (l.a(i, j - 1, k) == Block.u.bi) {
return 10F;
} else {
return l.l(i, j, k) - 0.5F;
}
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
}
public void b(NBTTagCompound nbttagcompound) {
super.b(nbttagcompound);
}
public boolean b() {
int i = MathHelper.b(p);
int j = MathHelper.b(z.b);
int k = MathHelper.b(r);
return l.a(i, j - 1, k) == Block.u.bi && l.j(i, j, k) > 8 && super.b();
}
public int c() {
return 120;
}
}