mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
fix(Core/Player): Solve the issue with creature not offering low level quests (#9862)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user