Use strongly typed ids in most places.

This commit is contained in:
Ottermandias 2023-07-29 02:22:31 +02:00
parent dccd347432
commit 18b6b87e6b
26 changed files with 192 additions and 193 deletions

View file

@ -99,7 +99,7 @@ public readonly struct ImcCache : IDisposable
return true;
}
var def = ImcFile.GetDefault(manager, file.Path, m.EquipSlot, m.Variant, out _);
var def = ImcFile.GetDefault(manager, file.Path, m.EquipSlot, m.Variant.Id, out _);
var manip = m.Copy(def);
if (!manip.Apply(file))
return false;