From 8dd94ac7f1fc1b77508b1140787c91413cbb817a Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 16 Dec 2018 19:58:11 -0500 Subject: fix error when hovering items in some cases --- docs/release-notes.md | 3 +++ src/SMAPI/Patches/ObjectErrorPatch.cs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 95de15ec..467f2298 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,4 +1,7 @@ # Release notes +## 2.9.3 +* Fixed errors hovering items in some cases with SMAPI 2.9.2. + ## 2.9.2 * For players: * SMAPI now prevents invalid items from crashing the game on hover. diff --git a/src/SMAPI/Patches/ObjectErrorPatch.cs b/src/SMAPI/Patches/ObjectErrorPatch.cs index 2cbb60c5..0481259d 100644 --- a/src/SMAPI/Patches/ObjectErrorPatch.cs +++ b/src/SMAPI/Patches/ObjectErrorPatch.cs @@ -49,7 +49,7 @@ namespace StardewModdingAPI.Patches return false; } - return false; + return true; } } } -- cgit