From 5d32d8cba7a83e06c0543a079ba2ea25873ced91 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 12 May 2018 23:02:08 -0400 Subject: change 'outdated' to 'not compatible' due to modder confusion --- src/SMAPI/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit