diff options
author | Subv <s.v.h21@hotmail.com> | 2012-04-05 08:32:58 -0500 |
---|---|---|
committer | Subv <s.v.h21@hotmail.com> | 2012-04-05 08:32:58 -0500 |
commit | 24b699d904aa90bccb25991254fd83ccf4df8066 (patch) | |
tree | 2ae00da78952509de31af905fcdbe3c54d2d3309 | |
parent | a7de92a7a1bae464b94d3ea15f2a203abd3d8d02 (diff) |
Core/Spells: Fixed Dancing Rune Weapon double-applying the duration bonus of the glyph
Closes #6032
Signed-off-by: Subv <s.v.h21@hotmail.com>
-rwxr-xr-x | src/server/game/Spells/Auras/SpellAuraEffects.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp index 6383c7ff3ef..c5a2705c003 100755 --- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp +++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp @@ -4768,11 +4768,6 @@ void AuraEffect::HandleAuraDummy(AuraApplication const* aurApp, uint8 mode, bool if (target->GetTypeId() == TYPEID_PLAYER) target->ToPlayer()->RemoveAmmo(); // not use ammo and not allow use break; - case 49028: - if (caster) - if (AuraEffect* aurEff = caster->GetAuraEffect(63330, 0)) // glyph of Dancing Rune Weapon - GetBase()->SetDuration(GetBase()->GetDuration() + aurEff->GetAmount()); - break; case 52916: // Honor Among Thieves if (target->GetTypeId() == TYPEID_PLAYER) if (Unit* spellTarget = ObjectAccessor::GetUnit(*target, target->ToPlayer()->GetComboTarget())) |