From 8e4aff391e97c218dd2519f6f581c86e953fbd0d Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Thu, 1 Mar 2018 11:29:13 -0500 Subject: [PATCH] Fix buff issue --- zone/spells.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/spells.cpp b/zone/spells.cpp index 6815ff406..0e643077e 100644 --- a/zone/spells.cpp +++ b/zone/spells.cpp @@ -3501,7 +3501,7 @@ bool Mob::SpellOnTarget(uint16 spell_id, Mob *spelltar, bool reflect, bool use_r action->target = spelltar->GetID(); } - action->level = caster_level; // caster level, for animation only + action->spell_level = action->level = caster_level; // caster level, for animation only action->type = 231; // 231 means a spell action->spell = spell_id; action->force = spells[spell_id].pushback;