summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: