fix(Core/Player): Solve the issue with creature not offering low level quests (#9862)
This commit is contained in:
parent
43fcd168cf
commit
a72d299f68
1 changed files with 4 additions and 2 deletions
|
|
@ -1697,13 +1697,15 @@ QuestGiverStatus Player::GetQuestDialogStatus(Object* questgiver)
|
|||
}
|
||||
}
|
||||
}
|
||||
else if (isNotLowLevelQuest)
|
||||
else
|
||||
{
|
||||
result2 = DIALOG_STATUS_AVAILABLE;
|
||||
result2 = isNotLowLevelQuest ? DIALOG_STATUS_AVAILABLE : DIALOG_STATUS_LOW_LEVEL_AVAILABLE;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
result2 = DIALOG_STATUS_UNAVAILABLE;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue