summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/release-notes.md3
-rw-r--r--src/SMAPI/Patches/ObjectErrorPatch.cs2
2 files changed, 4 insertions, 1 deletions
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;
}
}
}