summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2018-12-16 19:58:11 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2018-12-16 19:58:11 -0500
commit8dd94ac7f1fc1b77508b1140787c91413cbb817a (patch)
tree64bd8c4c4f7a0a96a539393a0d7c529a2e47e501
parentb214a76965d98ca785b64b490533b6bf66371a48 (diff)
downloadSMAPI-8dd94ac7f1fc1b77508b1140787c91413cbb817a.tar.gz
SMAPI-8dd94ac7f1fc1b77508b1140787c91413cbb817a.tar.bz2
SMAPI-8dd94ac7f1fc1b77508b1140787c91413cbb817a.zip
fix error when hovering items in some cases
-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;
}
}
}