summaryrefslogtreecommitdiff
path: root/game/01_init.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-07-28 20:49:58 -0300
committerJesusaves <cpntb1@ymail.com>2022-07-28 20:49:58 -0300
commit904c9e4e908df1324e58d0af6f135b818eeee954 (patch)
tree4f8836897b75eed18d693fb02224f3ce493426e0 /game/01_init.rpy
parent39ad62c23d917507c4a8912b071730abd2210a61 (diff)
downloadclient-904c9e4e908df1324e58d0af6f135b818eeee954.tar.gz
client-904c9e4e908df1324e58d0af6f135b818eeee954.tar.bz2
client-904c9e4e908df1324e58d0af6f135b818eeee954.tar.xz
client-904c9e4e908df1324e58d0af6f135b818eeee954.zip
Start sending MyUID, however it isn't used yet
Diffstat (limited to 'game/01_init.rpy')
-rw-r--r--game/01_init.rpy4
1 files changed, 3 insertions, 1 deletions
diff --git a/game/01_init.rpy b/game/01_init.rpy
index 4b7c596..55a305c 100644
--- a/game/01_init.rpy
+++ b/game/01_init.rpy
@@ -41,7 +41,7 @@ init -3 python:
# Configuration
config.autoreload = False
config.save_on_mobile_background = False
- persistent.release_name = "Diamond Python"
+ persistent.release_name = "Diamond Python VIII"
if persistent.host is None:
persistent.host="spheres.tmw2.org"
persistent.serverlist=[["TMW2", "spheres.tmw2.org", 61000]]
@@ -50,6 +50,8 @@ init -3 python:
persistent.ssl_enabled=False
else:
persistent.serverlist.append(["Localhost", "localhost", 61000])
+ if persistent.MyUID is None:
+ persistent.MyUID=uuid.uuid4().hex.upper()
if (persistent.allfiles is None):
persistent.allfiles=[]
allfiles=[]