83 lines
2.3 KiB
Java
83 lines
2.3 KiB
Java
package org.bukkit.craftbukkit.block;
|
|
|
|
import net.minecraft.resources.MinecraftKey;
|
|
import net.minecraft.world.level.block.entity.BrushableBlockEntity;
|
|
import org.bukkit.Bukkit;
|
|
import org.bukkit.Location;
|
|
import org.bukkit.World;
|
|
import org.bukkit.block.BrushableBlock;
|
|
import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
|
import org.bukkit.craftbukkit.util.CraftNamespacedKey;
|
|
import org.bukkit.inventory.ItemStack;
|
|
import org.bukkit.loot.LootTable;
|
|
|
|
public class CraftBrushableBlock extends CraftBlockEntityState<BrushableBlockEntity> implements BrushableBlock {
|
|
|
|
public CraftBrushableBlock(World world, BrushableBlockEntity tileEntity) {
|
|
super(world, tileEntity);
|
|
}
|
|
|
|
protected CraftBrushableBlock(CraftBrushableBlock state, Location location) {
|
|
super(state, location);
|
|
}
|
|
|
|
@Override
|
|
public ItemStack getItem() {
|
|
return CraftItemStack.asBukkitCopy(getSnapshot().getItem());
|
|
}
|
|
|
|
@Override
|
|
public void setItem(ItemStack item) {
|
|
getSnapshot().item = CraftItemStack.asNMSCopy(item);
|
|
}
|
|
|
|
@Override
|
|
public void applyTo(BrushableBlockEntity lootable) {
|
|
super.applyTo(lootable);
|
|
|
|
if (this.getSnapshot().lootTable == null) {
|
|
lootable.setLootTable((MinecraftKey) null, 0L);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public LootTable getLootTable() {
|
|
if (getSnapshot().lootTable == null) {
|
|
return null;
|
|
}
|
|
|
|
MinecraftKey key = getSnapshot().lootTable;
|
|
return Bukkit.getLootTable(CraftNamespacedKey.fromMinecraft(key));
|
|
}
|
|
|
|
@Override
|
|
public void setLootTable(LootTable table) {
|
|
setLootTable(table, getSeed());
|
|
}
|
|
|
|
@Override
|
|
public long getSeed() {
|
|
return getSnapshot().lootTableSeed;
|
|
}
|
|
|
|
@Override
|
|
public void setSeed(long seed) {
|
|
setLootTable(getLootTable(), seed);
|
|
}
|
|
|
|
private void setLootTable(LootTable table, long seed) {
|
|
MinecraftKey key = (table == null) ? null : CraftNamespacedKey.toMinecraft(table.getKey());
|
|
getSnapshot().setLootTable(key, seed);
|
|
}
|
|
|
|
@Override
|
|
public CraftBrushableBlock copy() {
|
|
return new CraftBrushableBlock(this, null);
|
|
}
|
|
|
|
@Override
|
|
public CraftBrushableBlock copy(Location location) {
|
|
return new CraftBrushableBlock(this, location);
|
|
}
|
|
}
|