summaryrefslogtreecommitdiff
path: root/game/script.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-21 17:38:29 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-21 17:38:29 -0300
commit7b33ded04aee0938583db6c0649bb4268802b2b1 (patch)
treeaddbd805423c706a0dc3babb97450270c8194f0f /game/script.rpy
parent4e4976e5bfdd3b5a7a165840a8d996d8127b01e4 (diff)
downloadclient-7b33ded04aee0938583db6c0649bb4268802b2b1.tar.gz
client-7b33ded04aee0938583db6c0649bb4268802b2b1.tar.bz2
client-7b33ded04aee0938583db6c0649bb4268802b2b1.tar.xz
client-7b33ded04aee0938583db6c0649bb4268802b2b1.zip
Add again the IRC Module, but have it shut down by default.
Disable PUB by default as well.
Diffstat (limited to 'game/script.rpy')
-rw-r--r--game/script.rpy6
1 files changed, 3 insertions, 3 deletions
diff --git a/game/script.rpy b/game/script.rpy
index b4cce2c..5d33df3 100644
--- a/game/script.rpy
+++ b/game/script.rpy
@@ -172,8 +172,8 @@ label loop:
jump inventory
"Visit tavern":
jump tavern
- "PUB":
- # TODO this needs its own label
+ "PUB" if persistent.irc_enable:
+ # TODO FIXME PUB
if persistent.nickname is not None:
python:
while True:
@@ -183,7 +183,7 @@ label loop:
else:
break
else:
- "ERROR" "You are not authorized to complete this operation.\n\nERR_NICK"
+ "ERROR" "You are not authorized to complete this operation.\n\nERR_NICK" # ??? I thought you choose one at prologue???
"Logout":
#$message=send_packet("logout")