Use correct reference for unlocking events

Was unlocking the real save file, not the editing-shadow. Oops
This commit is contained in:
Kurt
2022-01-01 23:15:37 -08:00
parent 7b4099030a
commit ae70525fd5

View File

@@ -14,7 +14,7 @@ public SAV_Misc8b(SAV8BS sav)
InitializeComponent();
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
SAV = (SAV8BS)(Origin = sav).Clone();
Unlocker = new EventUnlocker8b(sav);
Unlocker = new EventUnlocker8b(SAV);
ReadMain();
}