summaryrefslogtreecommitdiff
path: root/game/01_init.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-08-13 00:13:25 -0300
committerJesusaves <cpntb1@ymail.com>2021-08-13 00:13:25 -0300
commitee57db8dbf77727846b9c9c203a78a0e79169cb4 (patch)
tree3108a99de34ee0dbc6e4c9b4dc987eb94af57225 /game/01_init.rpy
parenta01837e928b4b7ec22b35a27f3222e9ce88c100a (diff)
downloadclient-ee57db8dbf77727846b9c9c203a78a0e79169cb4.tar.gz
client-ee57db8dbf77727846b9c9c203a78a0e79169cb4.tar.bz2
client-ee57db8dbf77727846b9c9c203a78a0e79169cb4.tar.xz
client-ee57db8dbf77727846b9c9c203a78a0e79169cb4.zip
Optimize some battle code because we'll be needing this soon
Diffstat (limited to 'game/01_init.rpy')
-rw-r--r--game/01_init.rpy6
1 files changed, 4 insertions, 2 deletions
diff --git a/game/01_init.rpy b/game/01_init.rpy
index d9e2168..84032c8 100644
--- a/game/01_init.rpy
+++ b/game/01_init.rpy
@@ -47,8 +47,6 @@ init -3 python:
persistent.serverlist.append(["Localhost", "localhost", 61000])
if (persistent.allfiles is None):
persistent.allfiles=[]
- if (persistent.summon is None):
- persistent.summon=ifte(config.developer, 15, 0)
allfiles=[]
HOST=str(persistent.host)
PORT=str(persistent.port)
@@ -335,6 +333,10 @@ init -3 python:
renpy.audio.audio.load=SpheresLoadAudioFile
+ ## Post setup
+ if (persistent.summon is None):
+ persistent.summon=ifte(config.developer, 15, 0)
+
#############################################################################
# URL3 Function
def GAME_UPDATER():