diff --git a/chunk.py b/chunk.py index 4ca0d19..a2c90dd 100644 --- a/chunk.py +++ b/chunk.py @@ -547,7 +547,7 @@ class ChunkRenderer(object): ): continue elif cave and ( - y == 15 and x == 0 + y == 15 and x == 0 and z != 127 ): # If it's on the facing edge, only render if what's # above it is transparent diff --git a/world.py b/world.py index 925feb0..7962350 100644 --- a/world.py +++ b/world.py @@ -232,7 +232,7 @@ class WorldRenderer(object): all_chunks = [] for dirpath, dirnames, filenames in os.walk(self.worlddir): - if not dirnames and filenames: + if not dirnames and filenames and "DIM-1" not in dirpath: for f in filenames: if f.startswith("c.") and f.endswith(".dat"): p = f.split(".")