summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Deprecations
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-10-09 14:08:16 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-10-09 14:08:16 -0400
commit3d10d08a1ac281620b60c0e5fd1d51b2da896a0d (patch)
tree4d845dcc22c27ce236b60ea4b34f00a9df035b7b /src/SMAPI/Framework/Deprecations
parenta220e14f2d22f5d481c87bfd76d1b9eeaebf04e3 (diff)
downloadSMAPI-3d10d08a1ac281620b60c0e5fd1d51b2da896a0d.tar.gz
SMAPI-3d10d08a1ac281620b60c0e5fd1d51b2da896a0d.tar.bz2
SMAPI-3d10d08a1ac281620b60c0e5fd1d51b2da896a0d.zip
make deprecation warnings a bit stronger for the upcoming 4.0.0 release
Diffstat (limited to 'src/SMAPI/Framework/Deprecations')
-rw-r--r--src/SMAPI/Framework/Deprecations/DeprecationManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/Deprecations/DeprecationManager.cs b/src/SMAPI/Framework/Deprecations/DeprecationManager.cs
index f58f085e..5a5850d1 100644
--- a/src/SMAPI/Framework/Deprecations/DeprecationManager.cs
+++ b/src/SMAPI/Framework/Deprecations/DeprecationManager.cs
@@ -101,7 +101,7 @@ namespace StardewModdingAPI.Framework.Deprecations
foreach (DeprecationWarning warning in this.QueuedWarnings.OrderBy(p => p.ModName).ThenBy(p => p.NounPhrase))
{
// build message
- string message = $"{warning.ModName} uses deprecated code ({warning.NounPhrase} is deprecated since SMAPI {warning.Version}).";
+ string message = $"{warning.ModName} uses deprecated code ({warning.NounPhrase}) and will break in the upcoming SMAPI 4.0.0.";
// get log level
LogLevel level;