diff options
-rw-r--r--[-rwxr-xr-x] | src/server/game/Entities/Unit/Unit.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index d6199cbd910..2d663f83856 100755..100644 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -8792,25 +8792,6 @@ bool Unit::HandleProcTriggerSpell(Unit* victim, uint32 damage, AuraEffect* trigg break; } - // Sword Specialization - if (auraSpellInfo->SpellFamilyName == SPELLFAMILY_GENERIC && auraSpellInfo->SpellIconID == 1462 && procSpell) - { - if (Player* plr = ToPlayer()) - { - if (cooldown && plr->HasSpellCooldown(16459)) - return false; - - // this required for attacks like Mortal Strike - plr->RemoveSpellCooldown(procSpell->Id); - - CastSpell(victim, procSpell->Id, true); - - if (cooldown) - plr->AddSpellCooldown(16459, 0, time(NULL) + cooldown); - return true; - } - } - // Blade Barrier if (auraSpellInfo->SpellFamilyName == SPELLFAMILY_DEATHKNIGHT && auraSpellInfo->SpellIconID == 85) { |