diff --git a/Enhancements/BetterGiveUp/MU3.Game/patch_GameLED.cs b/Enhancements/BetterGiveUp/MU3.Game/patch_GameLED.cs new file mode 100644 index 0000000..b0c0d4c --- /dev/null +++ b/Enhancements/BetterGiveUp/MU3.Game/patch_GameLED.cs @@ -0,0 +1,19 @@ +using MonoMod; +using System.Collections.Generic; + +namespace MU3.Game; + +class patch_GameLED: GameLED { + + [MonoModIgnore] + private class ButtonList: List; + + [MonoModIgnore] + private ButtonList _buttonList; + + public extern void orig_initialize(); + public new void initialize() { + _buttonList.Clear(); + orig_initialize(); + } +}