mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-08-05 15:20:15 +08:00
fix: avoid NRE in BeltSignal reset and remove no-op GalaxySelectUI reset
This commit is contained in:
@@ -67,7 +67,7 @@ internal static class BeltSignalPatch
|
||||
internal static void ResetState()
|
||||
{
|
||||
_clusterSeedKey = 0L;
|
||||
_signalBelts = null;
|
||||
_signalBelts = new Dictionary<int, uint>[64];
|
||||
SignalBeltFactoryIndices.Clear();
|
||||
for (var i = 0; i < DarkFogItemsInVoid.Length; i++)
|
||||
DarkFogItemsInVoid[i] = 0;
|
||||
|
||||
@@ -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