summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-05-12 23:02:08 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-05-12 23:02:08 -0400
commit5d32d8cba7a83e06c0543a079ba2ea25873ced91 (patch)
treefd6137504bdd0454935ca9af54071688c611f179
parentb9036f212e7898f9cd13006024d63aec61d50ed6 (diff)
downloadSMAPI-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.cs2
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)