use of net.minecraft.network.play.server.S35PacketUpdateTileEntity in project ArsMagica2 by Mithion.
the class TileEntityKeystoneRecepticle method getDescriptionPacket.
@Override
public Packet getDescriptionPacket() {
NBTTagCompound compound = new NBTTagCompound();
this.writeToNBT(compound);
S35PacketUpdateTileEntity packet = new S35PacketUpdateTileEntity(xCoord, yCoord, zCoord, worldObj.getBlockMetadata(xCoord, yCoord, zCoord), compound);
return packet;
}
use of net.minecraft.network.play.server.S35PacketUpdateTileEntity in project ArsMagica2 by Mithion.
the class TileEntityLectern method getDescriptionPacket.
@Override
public Packet getDescriptionPacket() {
NBTTagCompound compound = new NBTTagCompound();
writeToNBT(compound);
S35PacketUpdateTileEntity packet = new S35PacketUpdateTileEntity(xCoord, yCoord, zCoord, worldObj.getBlockMetadata(xCoord, yCoord, zCoord), compound);
return packet;
}
use of net.minecraft.network.play.server.S35PacketUpdateTileEntity in project ArsMagica2 by Mithion.
the class TileEntityMagiciansWorkbench method getDescriptionPacket.
@Override
public Packet getDescriptionPacket() {
NBTTagCompound compound = new NBTTagCompound();
this.writeToNBT(compound);
S35PacketUpdateTileEntity packet = new S35PacketUpdateTileEntity(xCoord, yCoord, zCoord, worldObj.getBlockMetadata(xCoord, yCoord, zCoord), compound);
return packet;
}
use of net.minecraft.network.play.server.S35PacketUpdateTileEntity in project NewHorizonsCoreMod by GTNewHorizons.
the class TileEntityBabyChest method getDescriptionPacket.
@Override
public Packet getDescriptionPacket() {
NBTTagCompound syncData = new NBTTagCompound();
writeSyncedNBT(syncData);
return new S35PacketUpdateTileEntity(xCoord, yCoord, zCoord, 1, syncData);
}
use of net.minecraft.network.play.server.S35PacketUpdateTileEntity in project SecurityCraft by Geforce132.
the class CustomizableSCTE method getDescriptionPacket.
public Packet getDescriptionPacket() {
NBTTagCompound tag = new NBTTagCompound();
this.writeToNBT(tag);
return new S35PacketUpdateTileEntity(xCoord, yCoord, zCoord, 1, tag);
}
Aggregations