summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/EntityZombieSimple.java
blob: b8a7c7b8cabd9ed947a580526e17a4c7c569e605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
    }
}