forked from aly/qstbak
muffin v7.4.10
This commit is contained in:
parent
2df81c5d15
commit
b8dd142c23
47 changed files with 3604 additions and 1058 deletions
|
|
@ -388,13 +388,18 @@ internal sealed class QuestJournalComponent
|
|||
{
|
||||
bool num = IsQuestExpired(questInfo);
|
||||
bool flag = _questFunctions.IsQuestUnobtainable(questInfo.QuestId);
|
||||
bool flag2 = _questFunctions.IsQuestLocked(questInfo.QuestId);
|
||||
bool flag3 = _questFunctions.IsReadyToAcceptQuest(questInfo.QuestId);
|
||||
bool flag2 = _questFunctions.IsQuestBlacklisted(questInfo.QuestId);
|
||||
bool flag3 = _questFunctions.IsQuestLocked(questInfo.QuestId);
|
||||
bool flag4 = _questFunctions.IsReadyToAcceptQuest(questInfo.QuestId);
|
||||
if (num || flag)
|
||||
{
|
||||
_uiUtils.ChecklistItem("Unobtainable", ImGuiColors.DalamudGrey, FontAwesomeIcon.Minus);
|
||||
}
|
||||
else if (flag2 || !flag3 || !_questRegistry.IsKnownQuest(questInfo.QuestId))
|
||||
else if (flag2)
|
||||
{
|
||||
_uiUtils.ChecklistItem("Blacklisted", ImGuiColors.DalamudGrey3, FontAwesomeIcon.Ban);
|
||||
}
|
||||
else if (flag3 || !flag4 || !_questRegistry.IsKnownQuest(questInfo.QuestId))
|
||||
{
|
||||
_uiUtils.ChecklistItem("Locked", ImGuiColors.DalamudRed, FontAwesomeIcon.Times);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue