fix(CORE/lfg): Correct random LFG reward bug (#22599)

Co-authored-by: Kito <kito@vortexirc.com>
This commit is contained in:
Vanna White
2025-08-01 02:55:22 -06:00
committed by GitHub
parent 548447ffb0
commit b711c55c1e

View File

@@ -1272,7 +1272,7 @@ bool Player::SatisfyQuestDay(Quest const* qInfo, bool msg) const
if (qInfo->IsDFQuest())
{
if (!m_DFQuests.empty())
if (m_DFQuests.find(qInfo->GetQuestId()) != m_DFQuests.end())
return false;
return true;