0

Use the overworld as the default regionset

This commit is contained in:
Andrew Chin
2012-01-05 00:27:41 -05:00
parent d7012c265b
commit f76fd28a82

View File

@@ -92,7 +92,10 @@ class World(object):
if mcrs: if mcrs:
# construct a regionset object for this # construct a regionset object for this
rset = RegionSet(self, root) rset = RegionSet(self, root)
self.regionsets.append(rset) if root == os.path.join(self.worlddir, "region"):
self.regionsets.insert(0, rset)
else:
self.regionsets.append(rset)
# TODO consider reordering self.regionsets so that the 'default' region is first # TODO consider reordering self.regionsets so that the 'default' region is first