0

only render overworld. Still renders grayscale though

This commit is contained in:
Andrew Brown
2010-10-31 13:19:58 -04:00
parent 32ba6c4424
commit 32552c50d6

View File

@@ -215,7 +215,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(".")