Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-18 14:00:05 +01:00
5209e17e1b
These are needed to properly allow for determining class type, in accordance with current practice.
19 Zeilen
377 B
Java
19 Zeilen
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;
|
|
}
|
|
}
|