From f67cd057f3ba3dbe67f4f274a13490ff41439491 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Thu, 18 Aug 2016 21:09:02 -0400 Subject: [PATCH] Fix issue with linked spell timers --- zone/spells.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/spells.cpp b/zone/spells.cpp index fe2ad1946..e12f8042f 100644 --- a/zone/spells.cpp +++ b/zone/spells.cpp @@ -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); }