geforkt von Mirrors/Paper
29 Zeilen
515 B
Java
29 Zeilen
515 B
Java
|
package net.minecraft.server;
|
||
|
|
||
|
public class EntityWaterMob extends EntityCreature implements IAnimals {
|
||
|
|
||
|
public EntityWaterMob(World world) {
|
||
|
super(world);
|
||
|
}
|
||
|
|
||
|
public boolean d_() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public void a(NBTTagCompound nbttagcompound) {
|
||
|
super.a(nbttagcompound);
|
||
|
}
|
||
|
|
||
|
public void b(NBTTagCompound nbttagcompound) {
|
||
|
super.b(nbttagcompound);
|
||
|
}
|
||
|
|
||
|
public boolean b() {
|
||
|
return l.a(z);
|
||
|
}
|
||
|
|
||
|
public int c() {
|
||
|
return 120;
|
||
|
}
|
||
|
}
|