summaryrefslogtreecommitdiff
path: root/game/04_init.rpy
diff options
context:
space:
mode:
Diffstat (limited to 'game/04_init.rpy')
-rw-r--r--game/04_init.rpy4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/04_init.rpy b/game/04_init.rpy
index 304f63a..9b73cd2 100644
--- a/game/04_init.rpy
+++ b/game/04_init.rpy
@@ -189,9 +189,9 @@ init python:
while not done:
try:
if use_ssl:
- ws = GameClient("wss://"+HOST+":61000")
+ ws = GameClient("wss://"+HOST+":"+PORT)
else:
- ws = GameClient("ws://"+HOST+":61000")
+ ws = GameClient("ws://"+HOST+":"+PORT)
ws.connect()
# May be problematic.
# Specially if exception is uncaught