From 1c454d9569823876f2a886ba2c39b2ed6360f5a2 Mon Sep 17 00:00:00 2001 From: KayenEQ Date: Thu, 19 Mar 2015 16:22:17 -0400 Subject: [PATCH] Fix for pets not receiving group buffs cast on them correctly. --- zone/spells.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/spells.cpp b/zone/spells.cpp index b0ed519d9..08030b8b5 100644 --- a/zone/spells.cpp +++ b/zone/spells.cpp @@ -2151,7 +2151,7 @@ bool Mob::SpellFinished(uint16 spell_id, Mob *spell_target, uint16 slot, uint16 // it can affect up to 7 people if the targeted group is not our own // Allow pets who cast group spells to affect the group. - if (spell_target->IsPetOwnerClient()){ + if (spell_target->IsPetOwnerClient() && IsPetOwnerClient()){ Mob* owner = spell_target->GetOwner(); if (owner)