diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-24 17:10:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-24 17:10:04 -0300 |
commit | 9381141fd1bfecc35ca2160b734d5bf320f3785e (patch) | |
tree | 6935e3530c34dea95b86120e8a149662347cc147 | |
parent | a992bda7d42aa0978b6661bd2d65651da64c2bce (diff) | |
download | client-9381141fd1bfecc35ca2160b734d5bf320f3785e.tar.gz client-9381141fd1bfecc35ca2160b734d5bf320f3785e.tar.bz2 client-9381141fd1bfecc35ca2160b734d5bf320f3785e.tar.xz client-9381141fd1bfecc35ca2160b734d5bf320f3785e.zip |
world has an extra SFX tag
-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 |