diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-05-12 23:02:08 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-05-12 23:02:08 -0400 |
commit | 5d32d8cba7a83e06c0543a079ba2ea25873ced91 (patch) | |
tree | fd6137504bdd0454935ca9af54071688c611f179 | |
parent | b9036f212e7898f9cd13006024d63aec61d50ed6 (diff) | |
download | SMAPI-5d32d8cba7a83e06c0543a079ba2ea25873ced91.tar.gz SMAPI-5d32d8cba7a83e06c0543a079ba2ea25873ced91.tar.bz2 SMAPI-5d32d8cba7a83e06c0543a079ba2ea25873ced91.zip |
change 'outdated' to 'not compatible' due to modder confusion
-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 e50c4ec9..3125bead 100644 --- a/src/SMAPI/Program.cs +++ b/src/SMAPI/Program.cs @@ -814,7 +814,7 @@ namespace StardewModdingAPI { string[] updateUrls = new[] { modDatabase.GetModPageUrlFor(metadata.Manifest.UniqueID), "https://smapi.io/compat" }.Where(p => p != null).ToArray(); - TrackSkip(metadata, $"it's outdated. Please check for a new version at {string.Join(" or ", updateUrls)}."); + TrackSkip(metadata, $"it's not compatible. Please check for a new version at {string.Join(" or ", updateUrls)}."); continue; } catch (SAssemblyLoadFailedException ex) |