Fix EQDP bug.

This commit is contained in:
Ottermandias 2024-06-15 12:09:41 +02:00
parent ad0c64d4ac
commit 30b32fdcd2
3 changed files with 4 additions and 12 deletions

View file

@ -112,7 +112,7 @@ public sealed class EqdpMetaDrawer(ModMetaEditor editor, MetaFileManager metaFil
ImGui.SameLine();
if (Checkmark("Model##eqdp"u8, "\0"u8, entry.Model, defaultEntry.Model, out var newModel))
{
entry = entry with { Material = newModel };
entry = entry with { Model = newModel };
changes = true;
}