private void handleMobSpawnerID(World world, BlockCoord coord, String mobtype) {
TileEntity tile = world.getTileEntity(coord.x, coord.y, coord.z);
if (tile instanceof TileEntityMobSpawner) {
((TileEntityMobSpawner) tile).func_145881_a().setEntityName(mobtype);
tile.markDirty();
world.markBlockForUpdate(coord.x, coord.y, coord.z);
}
}
private void handlePropertyChange(EntityPlayerMP sender, PacketCustom packet) {