Added missing methods to WorldEditBlockState

This commit is contained in:
Intelli 2023-03-29 19:11:48 -06:00
parent ace870b930
commit fe6023450c

View File

@ -1,5 +1,6 @@
package net.coreprotect.worldedit;
import java.util.Collection;
import java.util.List;
import org.bukkit.Chunk;
@ -9,6 +10,8 @@ import org.bukkit.World;
import org.bukkit.block.Block;
import org.bukkit.block.BlockState;
import org.bukkit.block.data.BlockData;
import org.bukkit.entity.Entity;
import org.bukkit.inventory.ItemStack;
import org.bukkit.material.MaterialData;
import org.bukkit.metadata.MetadataValue;
import org.bukkit.plugin.Plugin;
@ -184,4 +187,22 @@ public final class WorldEditBlockState implements BlockState {
return false;
}
@Override
public Collection<ItemStack> getDrops() {
// TODO Auto-generated method stub
return null;
}
@Override
public Collection<ItemStack> getDrops(ItemStack tool) {
// TODO Auto-generated method stub
return null;
}
@Override
public Collection<ItemStack> getDrops(ItemStack tool, Entity entity) {
// TODO Auto-generated method stub
return null;
}
}