muffin v6.19

This commit is contained in:
alydev 2025-10-10 10:13:06 +10:00
parent 221c095ee8
commit c31b0e1ec4
15 changed files with 1227 additions and 137 deletions

View file

@ -84,12 +84,13 @@ internal sealed class AlliedSocietyJournalComponent
private void DrawQuest(QuestInfo questInfo)
{
var (color, icon, text) = _uiUtils.GetQuestStyle(questInfo.QuestId);
var (color, icon, value) = _uiUtils.GetQuestStyle(questInfo.QuestId);
if (!_questRegistry.TryGetQuest(questInfo.QuestId, out Quest quest) || quest.Root.Disabled)
{
color = ImGuiColors.DalamudGrey;
}
if (_uiUtils.ChecklistItem(questInfo.Name + " (" + text + ")", color, icon))
string text = $"{questInfo.Name} ({value}) [{questInfo.QuestId}]";
if (_uiUtils.ChecklistItem(text, color, icon))
{
_questTooltipComponent.Draw(questInfo);
}