diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2018-12-09 18:52:21 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2018-12-09 18:52:21 -0500 |
commit | 441ded8c9a9e3dea39cb180df429d3fcc5f3cc96 (patch) | |
tree | 7bcbb78b60fbff28a65dd806ee9c5fb6cb3cfb31 /src/SMAPI/Framework | |
parent | 13ed6decf55a7fd72c34b965397011d3012cb9cc (diff) | |
download | SMAPI-441ded8c9a9e3dea39cb180df429d3fcc5f3cc96.tar.gz SMAPI-441ded8c9a9e3dea39cb180df429d3fcc5f3cc96.tar.bz2 SMAPI-441ded8c9a9e3dea39cb180df429d3fcc5f3cc96.zip |
fix error when a mod makes invalid changes to an NPC schedule
Diffstat (limited to 'src/SMAPI/Framework')
-rw-r--r-- | src/SMAPI/Framework/ContentCoordinator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/ContentCoordinator.cs b/src/SMAPI/Framework/ContentCoordinator.cs index 08a32a9b..7e256939 100644 --- a/src/SMAPI/Framework/ContentCoordinator.cs +++ b/src/SMAPI/Framework/ContentCoordinator.cs @@ -81,7 +81,7 @@ namespace StardewModdingAPI.Framework this.ContentManagers.Add( this.MainContentManager = new GameContentManager("Game1.content", serviceProvider, rootDirectory, currentCulture, this, monitor, reflection, this.OnDisposing) ); - this.CoreAssets = new CoreAssetPropagator(this.MainContentManager.AssertAndNormaliseAssetName, reflection); + this.CoreAssets = new CoreAssetPropagator(this.MainContentManager.AssertAndNormaliseAssetName, reflection, monitor); } /// <summary>Get a new content manager which handles reading files from the game content folder with support for interception.</summary> |