muffin v6.19
This commit is contained in:
parent
221c095ee8
commit
c31b0e1ec4
15 changed files with 1227 additions and 137 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue