From 80eaa59564223889b66cbfee08080e41e671aea1 Mon Sep 17 00:00:00 2001 From: Image <> Date: Fri, 6 Nov 2020 23:30:31 -0500 Subject: [PATCH] fix the HO ProcessSpell call, was causing harvest/spells to call "tick" instead of "cast" Fix #213 --- EQ2/source/WorldServer/SpellProcess.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EQ2/source/WorldServer/SpellProcess.cpp b/EQ2/source/WorldServer/SpellProcess.cpp index a510dab13..125254c45 100644 --- a/EQ2/source/WorldServer/SpellProcess.cpp +++ b/EQ2/source/WorldServer/SpellProcess.cpp @@ -1440,7 +1440,7 @@ bool SpellProcess::CastProcessedSpell(LuaSpell* spell, bool passive, bool in_her } }*/ if (!processedSpell) - processedSpell = ProcessSpell(spell, in_heroic_opp); + processedSpell = ProcessSpell(spell); // Quick hack to prevent a crash on spells that zones the caster (Gate) if (!spell->caster) @@ -2535,4 +2535,4 @@ void SpellProcess::DeleteSpell(LuaSpell* spell) } safe_delete(spell); -} \ No newline at end of file +}