mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-04 23:47:00 +01:00
These are needed to properly allow for determining class type, in accordance with current practice.
18 lines
377 B
Java
18 lines
377 B
Java
package net.minecraft.server;
|
|
|
|
public class EntityZombieSimple extends EntityMobs {
|
|
|
|
public EntityZombieSimple(World world) {
|
|
super(world);
|
|
aP = "/mob/zombie.png";
|
|
bC = 0.5F;
|
|
c = 50;
|
|
aZ *= 10;
|
|
H *= 6F;
|
|
a(I * 6F, J * 6F);
|
|
}
|
|
|
|
protected float a(int i, int j, int k) {
|
|
return l.l(i, j, k) - 0.5F;
|
|
}
|
|
}
|