From 432452c5c73592d8d32c14b6a9c8b6c98cb3dde8 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Mon, 10 Feb 2025 00:44:25 -0600 Subject: [PATCH] [Hotfix] [Spells] Fix ST_GroupNoPets and ST_GroupClientAndPet (#4667) --- common/spdat.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/common/spdat.cpp b/common/spdat.cpp index 2143c9682..5bfce95e6 100644 --- a/common/spdat.cpp +++ b/common/spdat.cpp @@ -822,9 +822,7 @@ bool IsGroupSpell(uint16 spell_id) return ( spell.target_type == ST_AEBard || spell.target_type == ST_Group || - spell.target_type == ST_GroupTeleport || - spell.target_type == ST_GroupNoPets || - spell.target_type == ST_GroupClientAndPet + spell.target_type == ST_GroupTeleport ); }