From dcd501062d284feadb2e70fbbf3d7f4be9fa5867 Mon Sep 17 00:00:00 2001 From: zontreck Date: Thu, 21 Dec 2023 11:57:38 -0700 Subject: [PATCH] Add a fix for dimensions that have a ceiling. --- gradle.properties | 4 ++-- src/main/java/dev/zontreck/essentials/rtp/RTP.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 7dd3903..7a1206c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -libzontreck=1.9.121923.1513 +libzontreck=1.9.122023.1612 ## Environment Properties @@ -49,7 +49,7 @@ mod_name=Aria's Essentials # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1.1.122123.1110 +mod_version=1.1.122123.1155 # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/java/dev/zontreck/essentials/rtp/RTP.java b/src/main/java/dev/zontreck/essentials/rtp/RTP.java index ff0bd73..5239080 100644 --- a/src/main/java/dev/zontreck/essentials/rtp/RTP.java +++ b/src/main/java/dev/zontreck/essentials/rtp/RTP.java @@ -50,7 +50,7 @@ public class RTP private Thread containingThread; private Heightmap.Types heightMapType; public WorldPosition position; - private List BLACKLIST = Lists.of(Blocks.LAVA, Blocks.WATER); + private List BLACKLIST = Lists.of(Blocks.LAVA, Blocks.WATER, Blocks.BEDROCK); protected int tries; protected int lastThreadDelay = 1;