Implement a few small features in LodServerWorld

This commit is contained in:
James Seibel
2021-07-26 22:20:00 -05:00
parent eb3455452b
commit e1edd01069
@@ -160,6 +160,17 @@ public class LodServerWorld implements ISeedReader {
return new WorldLightManager(null, false, false);
}
@Override
public long getSeed()
{
return serverWorld.getSeed();
}
@Override
public DynamicRegistries registryAccess()
{
return serverWorld.registryAccess();
}
@@ -190,10 +201,6 @@ public class LodServerWorld implements ISeedReader {
throw new UnsupportedOperationException("Not Implemented");
}
@Override
public DynamicRegistries registryAccess() {
throw new UnsupportedOperationException("Not Implemented");
}
@Override
public BiomeManager getBiomeManager() {
throw new UnsupportedOperationException("Not Implemented");
}
@@ -221,11 +228,6 @@ public class LodServerWorld implements ISeedReader {
public boolean destroyBlock(BlockPos pos, boolean dropBlock, Entity entity, int recursionLeft) {
throw new UnsupportedOperationException("Not Implemented");
}
@Override
public long getSeed() {
throw new UnsupportedOperationException("Not Implemented");
}
@Override