Fixed: Dimensions check the parent world's session instead of creating their own. (xxx)

This commit is contained in:
David Vierra 2012-11-30 22:42:12 -10:00
parent a9fdcee89e
commit 5e19f74ca5

View File

@ -1804,6 +1804,12 @@ class MCAlphaDimension (MCInfdevOldLevel):
def _create(self, *args, **kw):
pass
def acquireSessionLock(self):
pass
def checkSessionLock(self):
self.parentWorld.checkSessionLock()
dimensionNames = {-1: "Nether", 1: "The End"}
@property