-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ModSettingHotkeys and mods menu fixes
- Loading branch information
1 parent
564db68
commit daad0bf
Showing
5 changed files
with
20 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
- Fixed Exporting Game Data button for modders | ||
- Added `application/x-msdos-program` as an allowed download content type for the Mod Browser | ||
- Increased the default mod browser download limit from 50 MB to 75 MB | ||
- Added a more descriptive error message for mods that are too big | ||
- Fixed some upgrade screen UI glitches | ||
- Fixed ModSettingHotkeys to allow easier overlap with vanilla hotkeys | ||
- Fixed filtering mods menu empty page | ||
- Fixes for ModSettingEnums (thanks Baydock!) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
BloonsTD6 Mod Helper/Patches/UI/HotkeysScreenField_UpdateUI.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using Il2CppAssets.Scripts.Unity.UI_New.Settings; | ||
namespace BTD_Mod_Helper.Patches.UI; | ||
|
||
/// <summary> | ||
/// Ignore any exceptions coming from this method | ||
/// </summary> | ||
[HarmonyPatch(typeof(HotkeysScreenField), nameof(HotkeysScreenField.UpdateUi))] | ||
internal static class HotkeysScreenField_UpdateUI | ||
{ | ||
[HarmonyPostfix] | ||
private static void Postfix() | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters