summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-08-05 02:50:00 -0300
committerJesusaves <cpntb1@ymail.com>2021-08-05 02:50:00 -0300
commit69377eb56804f16f89cbf73504fbf536f6d620b7 (patch)
tree533fa7b2fdbf2353df46ddff81e222f4225b8123
parent94e9adf8e8f4461ab2306c5ab3970bcc9d3d65da (diff)
downloadclient-69377eb56804f16f89cbf73504fbf536f6d620b7.tar.gz
client-69377eb56804f16f89cbf73504fbf536f6d620b7.tar.bz2
client-69377eb56804f16f89cbf73504fbf536f6d620b7.tar.xz
client-69377eb56804f16f89cbf73504fbf536f6d620b7.zip
Minor polishing to IRC
-rw-r--r--game/irc.rpy9
-rw-r--r--game/script.rpy2
2 files changed, 6 insertions, 5 deletions
diff --git a/game/irc.rpy b/game/irc.rpy
index 35e05e3..0dd8382 100644
--- a/game/irc.rpy
+++ b/game/irc.rpy
@@ -195,11 +195,12 @@ screen pub():
ymargin 15
ypadding 10
xmargin 10
- ymaximum 0.8 # FIXME - Breaks the viewport
+ ymaximum 0.82
vbox:
spacing 30
textbutton _("Exit") action Return("")
- label _("PUB RAID - NOT YET IMPLEMENTED")
+ #label _("PUB RAID - NOT YET IMPLEMENTED")
+ label _("IRC Lobby - %s at %s" % (irc_channel, "libera.chat"))
null height 20
viewport:
#child_size (0.4, 0.8)
@@ -207,12 +208,12 @@ screen pub():
draggable True
arrowkeys True
xfill False
- ymaximum 0.7
+ ymaximum 0.75
scrollbars "vertical"
vbox:
xalign 0.5
- ymaximum 0.7
+ ymaximum 0.75
spacing 5
label _("%s" % persistent.nickname)
null height 40
diff --git a/game/script.rpy b/game/script.rpy
index 62361b0..17f6a5d 100644
--- a/game/script.rpy
+++ b/game/script.rpy
@@ -160,7 +160,7 @@ label loop:
jump inventory
"Visit tavern":
jump tavern
- "PUB" if persistent.irc_enable:
+ "IRC Chat" if persistent.irc_enable:
# TODO FIXME PUB
if persistent.nickname is not None:
python: