From 5e19f74ca5c97acd749f24966fd589a3c9e55c6b Mon Sep 17 00:00:00 2001 From: David Vierra Date: Fri, 30 Nov 2012 22:42:12 -1000 Subject: [PATCH] Fixed: Dimensions check the parent world's session instead of creating their own. (xxx) --- infiniteworld.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/infiniteworld.py b/infiniteworld.py index 823b975..882d18d 100644 --- a/infiniteworld.py +++ b/infiniteworld.py @@ -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