diff --git a/game/scripts/script.rpy b/game/scripts/script.rpy index eff1979d..cca4f815 100644 --- a/game/scripts/script.rpy +++ b/game/scripts/script.rpy @@ -24,6 +24,7 @@ label start_dev: game.difficulty = 2 game.cheats = True game.gold = 100000 + map_unlocked = True snape_unlocked = True tonks_unlocked = True hermione_unlocked = True diff --git a/game/scripts/utility/common_labels.rpy b/game/scripts/utility/common_labels.rpy index 501a09c0..2ee6dc6f 100644 --- a/game/scripts/utility/common_labels.rpy +++ b/game/scripts/utility/common_labels.rpy @@ -269,10 +269,13 @@ label play_music(music="", fadein=1.0, fadeout=1.0): # Play day/night theme label music_block: - if game.daytime: - call play_music("day") - else: - call play_music("night") + if current_room == "main_room": + if game.daytime: + call play_music("day") + else: + call play_music("night") + elif current_room == "snape_office": + call play_music("snape_office") return label unlock_clothing(text="", item="interface/icons/box_blue_1.webp"):