From 98c2fa512731d1ea4050ab2648022ba0e169ec73 Mon Sep 17 00:00:00 2001 From: zimp-wow <66187107+zimp-wow@users.noreply.github.com> Date: Fri, 21 Feb 2025 23:14:50 -0600 Subject: [PATCH] [Bug Fix] Fix bad Mob reference in QuestManager::resumetimer() (#4710) --- zone/questmgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/questmgr.cpp b/zone/questmgr.cpp index 727b1c2bc..7e8a4fa2f 100644 --- a/zone/questmgr.cpp +++ b/zone/questmgr.cpp @@ -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);