diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-02-06 13:03:37 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-02-06 13:03:37 -0500 |
commit | efec87065780426db15c51a7e68315ff488a89c0 (patch) | |
tree | b7649aee21a4ac6dbf4756892acd4a59a5a0eb29 /src/SMAPI/Framework/SCore.cs | |
parent | 54e7b5b846dfd542af3c8a904a57fc5ccc44ecb5 (diff) | |
download | SMAPI-efec87065780426db15c51a7e68315ff488a89c0.tar.gz SMAPI-efec87065780426db15c51a7e68315ff488a89c0.tar.bz2 SMAPI-efec87065780426db15c51a7e68315ff488a89c0.zip |
fix edge case in non-English asset cache after returning to title screen
Diffstat (limited to 'src/SMAPI/Framework/SCore.cs')
-rw-r--r-- | src/SMAPI/Framework/SCore.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index 0ae69f0f..2d783eb2 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -1118,6 +1118,7 @@ namespace StardewModdingAPI.Framework { // perform cleanup this.Multiplayer.CleanupOnMultiplayerExit(); + this.ContentCore.OnReturningToTitleScreen(); this.JustReturnedToTitle = true; } |