summaryrefslogtreecommitdiff
path: root/game/screens.rpy
diff options
context:
space:
mode:
Diffstat (limited to 'game/screens.rpy')
-rw-r--r--game/screens.rpy3
1 files changed, 2 insertions, 1 deletions
diff --git a/game/screens.rpy b/game/screens.rpy
index f5ffd9e..270c8bf 100644
--- a/game/screens.rpy
+++ b/game/screens.rpy
@@ -352,6 +352,7 @@ init python:
#default quick_menu = True
default tr_loading = False
default story_mode = False
+default battle_mode = False
default hud_interface = False
style quick_button is default
@@ -401,7 +402,7 @@ screen navigation():
textbutton _("Help") action ShowMenu("help")
- if not (main_menu or story_mode or hud_interface): # FIXME
+ if battle_mode: # FIXME
if Player["quest"] >= 5:
textbutton _("Summons") action ShowMenu("sumconf")