20 lines
544 B
Java
20 lines
544 B
Java
package cpw.mods.ironchest;
|
|
|
|
import net.minecraft.src.EntityAIOcelotSit;
|
|
import net.minecraft.src.EntityOcelot;
|
|
import net.minecraft.src.World;
|
|
|
|
public class IronChestAIOcelotSit extends EntityAIOcelotSit {
|
|
public IronChestAIOcelotSit(EntityOcelot par1EntityOcelot, float par2) {
|
|
super(par1EntityOcelot, par2);
|
|
}
|
|
|
|
@Override
|
|
protected boolean isSittableBlock(World world, int x, int y, int z) {
|
|
if (world.getBlockId(x, y, z) == IronChest.ironChestBlock.blockID) {
|
|
return true;
|
|
}
|
|
return super.isSittableBlock(world, x, y, z);
|
|
}
|
|
}
|