disable 'patched game code' warning for ErrorHandler
It doesn't really make sense for SMAPI to show a warning about itself.
This commit is contained in:
parent
6cd6eb43a1
commit
66017a39d9
|
@ -7,6 +7,10 @@
|
|||
* Migrated to Harmony 2.0 (see [_migrate to Harmony 2.0_](https://stardewvalleywiki.com/Modding:Migrate_to_Harmony_2.0) for more info).
|
||||
-->
|
||||
|
||||
## Upcoming release
|
||||
* For the Error Handler mod:
|
||||
* Disabled 'patched game code' warning.
|
||||
|
||||
## 3.9
|
||||
Released 22 January 2021 for Stardew Valley 1.5.4 or later. See [release highlights](https://www.patreon.com/posts/46553874).
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
* Metadata about some SMAPI mods used in compatibility, update, and dependency checks. This
|
||||
* field shouldn't be edited by players in most cases.
|
||||
*
|
||||
*
|
||||
* Standard fields
|
||||
* ===============
|
||||
* The predefined fields are documented below (only 'ID' is required). Each entry's key is the
|
||||
|
@ -14,6 +15,10 @@
|
|||
* other fields if no ID was specified. This doesn't include the latest ID, if any. Multiple
|
||||
* variants can be separated with '|'.
|
||||
*
|
||||
* - SuppressWarnings: the mod warnings to suppress, even if they'd normally be shown. This
|
||||
* should match the ModWarning enum.
|
||||
*
|
||||
*
|
||||
* Versioned metadata
|
||||
* ==================
|
||||
* Each record can also specify extra metadata using the field keys below.
|
||||
|
@ -49,6 +54,14 @@
|
|||
* mod is no longer compatible.
|
||||
*/
|
||||
"ModData": {
|
||||
/*********
|
||||
** Mods bundles with SMAPI
|
||||
*********/
|
||||
"Error Handler": {
|
||||
"ID": "SMAPI.ErrorHandler",
|
||||
"SuppressWarnings": "PatchesGame"
|
||||
},
|
||||
|
||||
/*********
|
||||
** Common dependencies for friendly errors
|
||||
*********/
|
||||
|
@ -186,7 +199,7 @@
|
|||
"~0.11.2 | Status": "AssumeBroken",
|
||||
"~0.11.2 | StatusReasonDetails": "causes errors and custom furniture no longer work in Stardew Valley 1.5"
|
||||
},
|
||||
|
||||
|
||||
"Custom Localization": {
|
||||
"ID": "ZaneYork.CustomLocalization",
|
||||
"FormerIDs": "SMAPI.CustomLocalization", // changed in 1.0.1
|
||||
|
@ -427,13 +440,13 @@
|
|||
"Fishing Adjust": {
|
||||
"ID": "shuaiz.FishingAdjustMod",
|
||||
"~2.0.1 | Status": "AssumeBroken",
|
||||
"~2.0.1 | StatusReasonDetails": "fails with 'method not found' error for 'Void Harmony.HarmonyInstance.Patch(System.Reflection.MethodBase, Harmony.HarmonyMethod, Harmony.HarmonyMethod, Harmony.HarmonyMethod)'"
|
||||
"~2.0.1 | StatusReasonDetails": "fails with 'method not found' error for 'Void Harmony.HarmonyInstance.Patch(System.Reflection.MethodBase, Harmony.HarmonyMethod, Harmony.HarmonyMethod, Harmony.HarmonyMethod)'"
|
||||
},
|
||||
|
||||
"Fishing Automaton": {
|
||||
"ID": "Drynwynn.FishingAutomaton",
|
||||
"~1.1 | Status": "AssumeBroken",
|
||||
"~1.1 | StatusReasonDetails": "runtime errors with Harmony 1.2.0.1 in SMAPI 2.8+"
|
||||
"~1.1 | StatusReasonDetails": "runtime errors with Harmony 1.2.0.1 in SMAPI 2.8+"
|
||||
},
|
||||
|
||||
"More Silo Storage": {
|
||||
|
|
Loading…
Reference in New Issue