Add a fix for dimensions that have a ceiling.

This commit is contained in:
zontreck 2023-12-21 11:57:38 -07:00
parent 08b458281b
commit dcd501062d
2 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ public class RTP
private Thread containingThread;
private Heightmap.Types heightMapType;
public WorldPosition position;
private List<Block> BLACKLIST = Lists.of(Blocks.LAVA, Blocks.WATER);
private List<Block> BLACKLIST = Lists.of(Blocks.LAVA, Blocks.WATER, Blocks.BEDROCK);
protected int tries;
protected int lastThreadDelay = 1;