diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-11-11 01:47:12 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-11-11 01:47:12 -0500 |
commit | 28ba3408bc84dd9d33f0aed126080be4dceb17f6 (patch) | |
tree | 8e4505ca51a30dab128aeae4c6ad555412b55867 /src/SMAPI/Framework/Deprecations | |
parent | cefd9e23b06599aca3fefba7a78c6c785f4e5d57 (diff) | |
download | SMAPI-28ba3408bc84dd9d33f0aed126080be4dceb17f6.tar.gz SMAPI-28ba3408bc84dd9d33f0aed126080be4dceb17f6.tar.bz2 SMAPI-28ba3408bc84dd9d33f0aed126080be4dceb17f6.zip |
raise all deprecation messages to the final level
Diffstat (limited to 'src/SMAPI/Framework/Deprecations')
-rw-r--r-- | src/SMAPI/Framework/Deprecations/DeprecationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/Deprecations/DeprecationManager.cs b/src/SMAPI/Framework/Deprecations/DeprecationManager.cs index 5a5850d1..f44b5d7d 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}) and will break in the upcoming SMAPI 4.0.0."; + string message = $"{warning.ModName} uses deprecated code ({warning.NounPhrase}) and will break in the next major SMAPI update."; // get log level LogLevel level; |