muffin v7.5.0
This commit is contained in:
parent
afafd5e377
commit
a6481e7b9a
67 changed files with 4281 additions and 2372 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue