Fix issue with linked spell timers

This commit is contained in:
Michael Cook (mackal) 2016-08-18 21:09:02 -04:00
parent 0789d10d3e
commit f67cd057f3

View File

@ -5741,6 +5741,6 @@ bool Client::IsLinkedSpellReuseTimerReady(uint32 timer_id)
{
if (timer_id > 19)
return true;
return GetPTimers().Expired(&database, pTimerLinkedSpellReuseStart + timer_id);
return GetPTimers().Expired(&database, pTimerLinkedSpellReuseStart + timer_id, false);
}