only render overworld. Still renders grayscale though
This commit is contained in:
2
world.py
2
world.py
@@ -215,7 +215,7 @@ class WorldRenderer(object):
|
|||||||
all_chunks = []
|
all_chunks = []
|
||||||
|
|
||||||
for dirpath, dirnames, filenames in os.walk(self.worlddir):
|
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:
|
for f in filenames:
|
||||||
if f.startswith("c.") and f.endswith(".dat"):
|
if f.startswith("c.") and f.endswith(".dat"):
|
||||||
p = f.split(".")
|
p = f.split(".")
|
||||||
|
|||||||
Reference in New Issue
Block a user