mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-11 02:02:04 -07:00
Adding all Entities into CraftBukkit.
These are needed to properly allow for determining class type, in accordance with current practice.
This commit is contained in:
committed by
Dinner Bone
parent
5f2c8108b7
commit
5209e17e1b
18
src/main/java/net/minecraft/server/EntityZombieSimple.java
Normal file
18
src/main/java/net/minecraft/server/EntityZombieSimple.java
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user