summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/SCore.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-08-29 18:00:41 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-08-29 18:00:41 -0400
commit2bb8e8353ba35c2db96f88a052400997232d25f8 (patch)
tree41e1c9ffd71d4a1889ce1a426179872eea03501b /src/SMAPI/Framework/SCore.cs
parentc2f474bf88a43e293d28851785a57a9ca1e60f2e (diff)
downloadSMAPI-2bb8e8353ba35c2db96f88a052400997232d25f8.tar.gz
SMAPI-2bb8e8353ba35c2db96f88a052400997232d25f8.tar.bz2
SMAPI-2bb8e8353ba35c2db96f88a052400997232d25f8.zip
update compatibility workaround for the recent PyTK update
Diffstat (limited to 'src/SMAPI/Framework/SCore.cs')
-rw-r--r--src/SMAPI/Framework/SCore.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs
index 0f86ed6b..a5e51bdf 100644
--- a/src/SMAPI/Framework/SCore.cs
+++ b/src/SMAPI/Framework/SCore.cs
@@ -1673,11 +1673,11 @@ namespace StardewModdingAPI.Framework
this.ReloadTranslations(loaded);
// set temporary PyTK compatibility mode
- // This is part of a three-part fix for PyTK 1.23.0 and earlier. When removing this,
+ // This is part of a three-part fix for PyTK 1.23.* and earlier. When removing this,
// search 'Platonymous.Toolkit' to find the other part in SMAPI and Content Patcher.
{
IModInfo? pyTk = this.ModRegistry.Get("Platonymous.Toolkit");
- ModContentManager.EnablePyTkLegacyMode = pyTk is not null && pyTk.Manifest.Version.IsOlderThan("1.23.1");
+ ModContentManager.EnablePyTkLegacyMode = pyTk is not null && pyTk.Manifest.Version.IsOlderThan("1.24.0");
}
// initialize loaded non-content-pack mods