From ca0de49df20a44dc4b4072c99eafe38a7cc359e3 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Sun, 8 May 2022 10:42:10 +0200 Subject: [PATCH] fix(Core/Spells): Paladin's Judgements can be applied on different targets at the same time (#11672) * cherry-pick commit (https://github.com/TrinityCore/TrinityCore/commit/4bff22385195428425251ff351d9207fafbde85b) Co-Authored-By: Gildor <521036+Jildor@users.noreply.github.com> Co-authored-by: Gildor <521036+Jildor@users.noreply.github.com> --- src/server/game/Spells/SpellInfo.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp index e7e55bc2a..6f5257301 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -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; }