fix(Core/Spells): Paladin's Judgements can be applied on different targets at the same time (#11672)

* cherry-pick commit (4bff223851)

Co-Authored-By: Gildor <521036+Jildor@users.noreply.github.com>

Co-authored-by: Gildor <521036+Jildor@users.noreply.github.com>
This commit is contained in:
Kitzunu
2022-05-08 10:42:10 +02:00
committed by GitHub
parent 232390fed6
commit ca0de49df2

View File

@@ -1360,14 +1360,6 @@ bool SpellInfo::IsSingleTarget() const
if (AttributesEx5 & SPELL_ATTR5_LIMIT_N)
return true;
switch (GetSpellSpecific())
{
case SPELL_SPECIFIC_JUDGEMENT:
return true;
default:
break;
}
return false;
}