use of net.minecraft.network.play.server.SUpdateTileEntityPacket in project Overloaded by CJ-MC-Mods.
the class TileItemInterface method getUpdatePacket.
@Nullable
@Override
public SUpdateTileEntityPacket getUpdatePacket() {
CompoundNBT tag = new CompoundNBT();
save(tag);
return new SUpdateTileEntityPacket(getBlockPos(), 1, tag);
}
use of net.minecraft.network.play.server.SUpdateTileEntityPacket in project Overloaded by CJ-MC-Mods.
the class TilePlayerInterface method getUpdatePacket.
@Nullable
@Override
public SUpdateTileEntityPacket getUpdatePacket() {
CompoundNBT tag = new CompoundNBT();
save(tag);
return new SUpdateTileEntityPacket(getBlockPos(), 1, tag);
}
use of net.minecraft.network.play.server.SUpdateTileEntityPacket in project BluePower by Qmunity.
the class TileBPMicroblock method getUpdatePacket.
@Override
public SUpdateTileEntityPacket getUpdatePacket() {
CompoundNBT nbtTag = new CompoundNBT();
save(nbtTag);
return new SUpdateTileEntityPacket(getBlockPos(), 1, nbtTag);
}
use of net.minecraft.network.play.server.SUpdateTileEntityPacket in project BluePower by Qmunity.
the class TileBPMultipart method getUpdatePacket.
@Override
public SUpdateTileEntityPacket getUpdatePacket() {
CompoundNBT nbtTag = new CompoundNBT();
save(nbtTag);
return new SUpdateTileEntityPacket(getBlockPos(), 1, nbtTag);
}
Aggregations