Fixed multiple major RAM issues. Next one is the 100/s reload issue...

This commit is contained in:
TomTheFurry
2022-08-08 23:00:30 +08:00
parent 841e831ce0
commit 64eb773ab8
4 changed files with 4 additions and 4 deletions
@@ -29,7 +29,7 @@ public class BlockStateWrapper implements IBlockStateWrapper {
public final BlockState blockState;
BlockStateWrapper(BlockState blockState) {
this.blockState = blockState;
LOGGER.info("Created BlockStateWrapper for {}", blockState);
//LOGGER.info("Created BlockStateWrapper for {}", blockState);
}
@Override
@@ -45,7 +45,7 @@ public class ClientBlockStateCache {
level = (LevelReader) samplingLevel.unwrapLevel();
pos = McObjectConverter.Convert(samplingPos);
resolveColors();
LOGGER.info("ClientBlocKCache created for {}", blockState);
//LOGGER.info("ClientBlocKCache created for {}", blockState);
}
boolean isColorResolved = false;
@@ -26,7 +26,7 @@ public class ServerBlockStateCache {
level = (LevelReader) samplingLevel.unwrapLevel();
pos = McObjectConverter.Convert(samplingPos);
resolveShapes();
LOGGER.info("ServerBlockState created for {}", blockState);
//LOGGER.info("ServerBlockState created for {}", blockState);
}
boolean noCollision = false;
+1 -1
Submodule core updated: 6aab2d287c...6a49a100e7