diff options
Diffstat (limited to 'game')
-rw-r--r-- | game/quest.rpy | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/game/quest.rpy b/game/quest.rpy index 782c4fd..3609188 100644 --- a/game/quest.rpy +++ b/game/quest.rpy @@ -49,6 +49,7 @@ label quest_select: arena=copy.copy(arx) name=arena.pop(0) req=arena.pop(0) + sfx=arena.pop(0) if Player["quest"] >= req: worldmap.append((name, arena)) @@ -158,6 +159,7 @@ label quest_selected: del bg_is_showing # Okay, story-telling time is over: To arms! + # quest["music"] play music MUSIC_BATTLE.id() fadein 0.5 $ renpy.free_memory() window hide |