diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-02-16 23:12:01 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-02-16 23:12:01 -0500 |
commit | 8a1982326799dfe7f3d078beba32348befa1c9e6 (patch) | |
tree | d904aa73098f5e9577532fd1d03908e2e78f26d0 /src/SMAPI/Program.cs | |
parent | 9b3dd42cbf62a8524ac390d9418cf961c502868a (diff) | |
download | SMAPI-8a1982326799dfe7f3d078beba32348befa1c9e6.tar.gz SMAPI-8a1982326799dfe7f3d078beba32348befa1c9e6.tar.bz2 SMAPI-8a1982326799dfe7f3d078beba32348befa1c9e6.zip |
add mod page URL to missing-dependency errors (#437)
Diffstat (limited to 'src/SMAPI/Program.cs')
-rw-r--r-- | src/SMAPI/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs index 85bc83a7..275876dd 100644 --- a/src/SMAPI/Program.cs +++ b/src/SMAPI/Program.cs @@ -351,7 +351,7 @@ namespace StardewModdingAPI this.Monitor.Log("SMAPI found problems in your game's content files which are likely to cause errors or crashes. Consider uninstalling XNB mods or reinstalling the game.", LogLevel.Error); // load mod data - ModDatabase modDatabase = new ModDatabase(this.Settings.ModData); + ModDatabase modDatabase = new ModDatabase(this.Settings.ModData, Constants.GetUpdateUrl); // load mods { |