summaryrefslogtreecommitdiff
path: root/game/core.rpy
diff options
context:
space:
mode:
Diffstat (limited to 'game/core.rpy')
-rw-r--r--game/core.rpy2
1 files changed, 2 insertions, 0 deletions
diff --git a/game/core.rpy b/game/core.rpy
index 1914c54..a9ed013 100644
--- a/game/core.rpy
+++ b/game/core.rpy
@@ -29,11 +29,13 @@ init -3 python:
# This is Python 3.x
execute=subprocess.run
LEGACY = False
+ import mwclient
print("Python 3.x detected! Version is %d." % PYTHON_VERSION)
else:
# This is Python 2.7
execute=subprocess.call
LEGACY = True
+ mwclient = None
print("Python 2.7 detected! Compatibility mode enabled! (ver: %d)" % PYTHON_VERSION)
#############################################################################