use of org.bukkit.craftbukkit.v1_10_R1.block.CraftBlockState in project Denizen-For-Bukkit by DenizenScript.
the class BlockHelper_v1_8_R3 method setNbtData.
@Override
public void setNbtData(Block block, CompoundTag compoundTag) {
TileEntity tileEntity = ((CraftBlockState) block.getState()).getTileEntity();
if (tileEntity == null) {
return;
}
tileEntity.a(((CompoundTag_v1_8_R3) compoundTag).toNMSTag());
tileEntity.update();
}
use of org.bukkit.craftbukkit.v1_10_R1.block.CraftBlockState in project Denizen-For-Bukkit by DenizenScript.
the class BlockHelper_v1_9_R2 method setNbtData.
@Override
public void setNbtData(Block block, CompoundTag compoundTag) {
TileEntity tileEntity = ((CraftBlockState) block.getState()).getTileEntity();
if (tileEntity == null) {
return;
}
tileEntity.a(((CompoundTag_v1_9_R2) compoundTag).toNMSTag());
tileEntity.update();
}
use of org.bukkit.craftbukkit.v1_10_R1.block.CraftBlockState in project Denizen-For-Bukkit by DenizenScript.
the class BlockHelper_v1_10_R1 method setNbtData.
@Override
public void setNbtData(Block block, CompoundTag compoundTag) {
TileEntity tileEntity = ((CraftBlockState) block.getState()).getTileEntity();
if (tileEntity == null) {
return;
}
tileEntity.a(((CompoundTag_v1_10_R1) compoundTag).toNMSTag());
tileEntity.update();
}
use of org.bukkit.craftbukkit.v1_10_R1.block.CraftBlockState in project Denizen-For-Bukkit by DenizenScript.
the class BlockHelper_v1_8_R3 method getNbtData.
@Override
public CompoundTag getNbtData(Block block) {
TileEntity tileEntity = ((CraftBlockState) block.getState()).getTileEntity();
if (tileEntity == null) {
return null;
}
NBTTagCompound nbtTagCompound = new NBTTagCompound();
tileEntity.b(new NBTTagCompound());
return CompoundTag_v1_8_R3.fromNMSTag(nbtTagCompound);
}
use of org.bukkit.craftbukkit.v1_10_R1.block.CraftBlockState in project Denizen-For-Bukkit by DenizenScript.
the class BlockHelper_v1_11_R1 method setNbtData.
@Override
public void setNbtData(Block block, CompoundTag compoundTag) {
TileEntity tileEntity = ((CraftBlockState) block.getState()).getTileEntity();
if (tileEntity == null) {
return;
}
tileEntity.a(((CompoundTag_v1_11_R1) compoundTag).toNMSTag());
tileEntity.update();
}
Aggregations