diff options
Diffstat (limited to 'game/recruit.rpy')
-rw-r--r-- | game/recruit.rpy | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/game/recruit.rpy b/game/recruit.rpy index 9580a9b..85dc18a 100644 --- a/game/recruit.rpy +++ b/game/recruit.rpy @@ -126,7 +126,7 @@ screen tavern(): xanchor 0.0 hbox: spacing 24 - showif alltaverns[tavern]["enabled"]: + showif alltaverns[tavern]["min_quest"] > 0: button: xmaximum 250 #350 yminimum 60 #111 @@ -213,6 +213,7 @@ screen tavern(): label tv_loop: # Download all tavern banners + # TODO: Make a copy() and remove locked taverns (min_quest > Player["quest"]) python: tr_loading = True for tv in alltaverns: |