remove debug logging

This commit is contained in:
dfsek
2020-12-30 21:10:52 -07:00
parent bccfcdf9a1
commit 97f6cda4ad
4 changed files with 2 additions and 20 deletions
@@ -78,7 +78,6 @@ public class StructureScript {
public boolean execute(Location location, Chunk chunk, Random random, Rotation rotation) {
StructureBuffer buffer = cache.computeIfAbsent(location, loc -> {
System.out.println("Recalculating for (" + loc.getBlockX() + ", " + loc.getBlockZ() + "), chunk {" + chunk.getX() + ", " + chunk.getZ() + "}, cache size: " + cache.size());
StructureBuffer buf = new StructureBuffer(loc);
Block.ReturnLevel level = block.apply(buf, rotation, random, 0);
buf.setSucceeded(!level.equals(Block.ReturnLevel.FAIL));