Fix issue with resetting GEQP parameters on reload (again?)

This commit is contained in:
Ottermandias 2024-11-20 18:08:24 +01:00
parent 3beef61c6f
commit ce75471e51
4 changed files with 15 additions and 3 deletions

View file

@ -79,6 +79,17 @@ public class MetaDictionary
_globalEqp.Clear();
}
public void ClearForDefault()
{
Count = _globalEqp.Count;
_imc.Clear();
_eqp.Clear();
_eqdp.Clear();
_est.Clear();
_rsp.Clear();
_gmp.Clear();
}
public bool Equals(MetaDictionary other)
=> Count == other.Count
&& _imc.SetEquals(other._imc)