muffin v7.5.0

This commit is contained in:
alydev 2026-05-01 05:17:35 +10:00
parent afafd5e377
commit a6481e7b9a
67 changed files with 4281 additions and 2372 deletions

View file

@ -171,10 +171,11 @@ internal sealed class EventInfoComponent
{
continue;
}
ImU8String id = new ImU8String(21, 1);
id.AppendLiteral("##EventQuestSelection");
id.AppendFormatted(questId);
using (ImRaii.PushId(id))
ImU8String imU8String = new ImU8String(21, 1);
imU8String.AppendLiteral("##EventQuestSelection");
imU8String.AppendFormatted(questId);
IdDisposable val = ImRaii.PushId(imU8String, true);
try
{
string name = _questData.GetQuestInfo(questId).Name;
if (list.Contains(questId) && _questRegistry.TryGetQuest(questId, out Questionable.Model.Quest quest))
@ -203,6 +204,10 @@ internal sealed class EventInfoComponent
}
}
}
finally
{
((IDisposable)val)?.Dispose();
}
}
}