diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-08-05 11:56:10 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-08-05 11:56:10 -0400 |
commit | 80d3dd1f786f7e5846f9adb7f7a4d82e5b9b92fd (patch) | |
tree | ecc708a23eff963ef0100e764e7238c883a8ff16 /src/SMAPI/Framework/SCore.cs | |
parent | 2e442bf2ee9f7d73c935dfed95c996581a17e06f (diff) | |
parent | b6e058c322f3b904a047ba09cb1701a1bb812e47 (diff) | |
download | SMAPI-80d3dd1f786f7e5846f9adb7f7a4d82e5b9b92fd.tar.gz SMAPI-80d3dd1f786f7e5846f9adb7f7a4d82e5b9b92fd.tar.bz2 SMAPI-80d3dd1f786f7e5846f9adb7f7a4d82e5b9b92fd.zip |
Merge branch 'develop' into stable
Diffstat (limited to 'src/SMAPI/Framework/SCore.cs')
-rw-r--r-- | src/SMAPI/Framework/SCore.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index 3f97bd4e..5fb4aa03 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -257,7 +257,6 @@ namespace StardewModdingAPI.Framework MiniMonoModHotfix.Apply(); HarmonyPatcher.Apply("SMAPI", this.Monitor, new Game1Patcher(this.Reflection, this.OnLoadStageChanged), - new SaveGamePatcher(this.OnSaveFileReading), new TitleMenuPatcher(this.OnLoadStageChanged) ); @@ -1102,13 +1101,6 @@ namespace StardewModdingAPI.Framework this.EventManager.ReturnedToTitle.RaiseEmpty(); } - /// <summary>Raised before the game begins reading a save file.</summary> - /// <param name="fileName">The save folder name.</param> - internal void OnSaveFileReading(string fileName) - { - Constants.LastRawSaveFileName = fileName; - } - /// <summary>Apply fixes to the save after it's loaded.</summary> private void ApplySaveFixes() { |