From d32b247db7f9139c6d9c6a6f069c217004cca05d Mon Sep 17 00:00:00 2001 From: Christoph Burschka Date: Sun, 10 Mar 2013 20:24:21 +0100 Subject: [PATCH] Follow symbolic links while finding region sets. --- overviewer_core/world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviewer_core/world.py b/overviewer_core/world.py index 8480a98..84c07dd 100644 --- a/overviewer_core/world.py +++ b/overviewer_core/world.py @@ -116,7 +116,7 @@ class World(object): # seem to be any set standard on what dimensions are in each world, # just scan the directory heirarchy to find a directory with .mca # files. - for root, dirs, files in os.walk(self.worlddir): + for root, dirs, files in os.walk(self.worlddir, followlinks=True): # any .mcr files in this directory? mcas = [x for x in files if x.endswith(".mca")] if mcas: