diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-23 10:42:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-23 10:42:56 -0300 |
commit | df5594789d3bf63b82e64d329a61f80610b5895b (patch) | |
tree | b6b69d6b74cefb7ff7b8cbcefb445441453f0b30 | |
parent | 9195bd722fc71187d06c5dba1d2ca165c0f6d04b (diff) | |
download | client-df5594789d3bf63b82e64d329a61f80610b5895b.tar.gz client-df5594789d3bf63b82e64d329a61f80610b5895b.tar.bz2 client-df5594789d3bf63b82e64d329a61f80610b5895b.tar.xz client-df5594789d3bf63b82e64d329a61f80610b5895b.zip |
Better display for inactive taverns.
-rw-r--r-- | game/recruit.rpy | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/game/recruit.rpy b/game/recruit.rpy index 14d661c..c45f231 100644 --- a/game/recruit.rpy +++ b/game/recruit.rpy @@ -121,7 +121,8 @@ screen tavern(): xpos 255 xanchor 0.0 hbox: - spacing 24 + spacing 24 + showif alltaverns[tavern]["enabled"]: button: xmaximum 250 #350 yminimum 60 #111 @@ -152,6 +153,8 @@ screen tavern(): size 24 outlines [(1,"#FFF",0,0)] null width 25 + else: + label _("Coming soon!") null: height 42 hbox: @@ -210,7 +213,6 @@ label tv_loop: tr_loading = True for tv in alltaverns: renpy.pause(0.001, hard=True) - print str(tv) if tv["banner"] != "": show_img("banner "+tv["banner"], False) tr_loading = False |