From 5c238c5040ede588666f9f66bed50a7b6c77c4a7 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 5 Jan 2019 05:06:26 -0500 Subject: [PATCH] restore API methods intended for other mods --- .../Framework/Music/SongSpecifics.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/GeneralMods/StardewSymphonyRemastered/StardewSymphonyRemastered/Framework/Music/SongSpecifics.cs b/GeneralMods/StardewSymphonyRemastered/StardewSymphonyRemastered/Framework/Music/SongSpecifics.cs index 00af587f..6754232b 100644 --- a/GeneralMods/StardewSymphonyRemastered/StardewSymphonyRemastered/Framework/Music/SongSpecifics.cs +++ b/GeneralMods/StardewSymphonyRemastered/StardewSymphonyRemastered/Framework/Music/SongSpecifics.cs @@ -222,6 +222,19 @@ namespace StardewSymphonyRemastered.Framework festivals.Add(name); } + /// Custom way to add in event to hijack music. + public static void addEvent(string id) + { + events.Add(id); + //Do some logic here + } + + /// Add a location to the loctaion list. + public static void addLocation(string name) + { + locations.Add(name); + } + /// Get the name of the day of the week from what game day it is. public static string getDayOfWeekString() {