[Hotfix] [Spells] Fix ST_GroupNoPets and ST_GroupClientAndPet (#4667)

This commit is contained in:
nytmyr 2025-02-10 00:44:25 -06:00 committed by GitHub
parent f3a2f97155
commit 432452c5c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -822,9 +822,7 @@ bool IsGroupSpell(uint16 spell_id)
return ( return (
spell.target_type == ST_AEBard || spell.target_type == ST_AEBard ||
spell.target_type == ST_Group || spell.target_type == ST_Group ||
spell.target_type == ST_GroupTeleport || spell.target_type == ST_GroupTeleport
spell.target_type == ST_GroupNoPets ||
spell.target_type == ST_GroupClientAndPet
); );
} }