mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-08-05 19:00:12 +08:00
fix: avoid NRE in BeltSignal reset and remove no-op GalaxySelectUI reset
This commit is contained in:
@@ -30,21 +30,14 @@ public static class GalaxySelectUIPatch
|
||||
{
|
||||
MoreSettings.Enabled.SettingChanged += OnEnabledChanged;
|
||||
Enable(MoreSettings.Enabled.Value);
|
||||
GameLogicProc.OnGameEnd += ResetState;
|
||||
}
|
||||
|
||||
public static void Uninit()
|
||||
{
|
||||
GameLogicProc.OnGameEnd -= ResetState;
|
||||
MoreSettings.Enabled.SettingChanged -= OnEnabledChanged;
|
||||
Enable(false);
|
||||
}
|
||||
|
||||
private static void ResetState()
|
||||
{
|
||||
// No per-game mutable fields in this file; UI references are lifecycle-safe.
|
||||
}
|
||||
|
||||
private static void OnEnabledChanged(object sender, System.EventArgs e)
|
||||
{
|
||||
Enable(MoreSettings.Enabled.Value);
|
||||
|
||||
Reference in New Issue
Block a user