diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-04-23 18:57:43 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-04-23 18:57:43 -0400 |
commit | bcaf5b21c1e64ddca29b27d2b96652a3d925d8ff (patch) | |
tree | 4ebcb4c3fce0bc6b16b03ba73cdb405fa162d380 /src/StardewModdingAPI/Program.cs | |
parent | 7f8d738e86ae602edc91f0fa80643ee0cf47b089 (diff) | |
download | SMAPI-bcaf5b21c1e64ddca29b27d2b96652a3d925d8ff.tar.gz SMAPI-bcaf5b21c1e64ddca29b27d2b96652a3d925d8ff.tar.bz2 SMAPI-bcaf5b21c1e64ddca29b27d2b96652a3d925d8ff.zip |
remove Initialize/LoadContent overrides & deprecate related events (#265)
Diffstat (limited to 'src/StardewModdingAPI/Program.cs')
-rw-r--r-- | src/StardewModdingAPI/Program.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/Program.cs b/src/StardewModdingAPI/Program.cs index 58850dc3..909a817c 100644 --- a/src/StardewModdingAPI/Program.cs +++ b/src/StardewModdingAPI/Program.cs @@ -120,6 +120,7 @@ namespace StardewModdingAPI Log.Shim(this.DeprecationManager, this.GetSecondaryMonitor("legacy mod"), this.ModRegistry); Mod.Shim(this.DeprecationManager); ContentEvents.Shim(this.ModRegistry, this.Monitor); + GameEvents.Shim(this.DeprecationManager); PlayerEvents.Shim(this.DeprecationManager); TimeEvents.Shim(this.DeprecationManager); #pragma warning restore 618 |