compile Fabric

This commit is contained in:
dfsek
2021-06-24 19:19:44 -07:00
parent ab9f98994d
commit dc1f1a0339
12 changed files with 85 additions and 157 deletions

View File

@@ -50,14 +50,6 @@ public interface World extends Handle {
return getBlockState(position.getBlockX(), position.getBlockY(), position.getBlockZ());
}
void setBlockState(int x, int y, int z, BlockState state);
default void setBlockState(Vector3 position, BlockState state) {
setBlockState(position.getBlockX(), position.getBlockY(), position.getBlockZ(), state);
}
Entity spawnEntity(Location location, EntityType entityType);
int getMinHeight();