[Bug Fix] Fix bad Mob reference in QuestManager::resumetimer() (#4710)

This commit is contained in:
zimp-wow 2025-02-21 23:14:50 -06:00 committed by GitHub
parent 8b8b41dab3
commit 98c2fa5127
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -890,7 +890,7 @@ void QuestManager::resumetimer(const std::string& timer_name, Mob* m)
}
}
QTimerList.emplace_back(QuestTimer(milliseconds, m, timer_name));
QTimerList.emplace_back(QuestTimer(milliseconds, mob, timer_name));
parse->EventMob(EVENT_TIMER_RESUME, mob, nullptr, f);