diff options
| author | Spp <spp@jorge.gr> | 2011-12-15 11:12:15 +0100 |
|---|---|---|
| committer | Spp <spp@jorge.gr> | 2011-12-15 11:12:15 +0100 |
| commit | d59c5e627fd023d3767bd8eb3e1eb4384d971bde (patch) | |
| tree | 7c75326aed5ad6bb783bd8b7f1696c04a539a5fc /src/server/game/Entities/Unit | |
| parent | e504fc88d6a32e66875934d9c6a745f096335042 (diff) | |
Fix warnings
Diffstat (limited to 'src/server/game/Entities/Unit')
| -rwxr-xr-x | src/server/game/Entities/Unit/Unit.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index 3b5b210d18e..f34d54d71a2 100755 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -1926,12 +1926,7 @@ void Unit::AttackerStateUpdate (Unit* victim, WeaponAttackType attType, bool ext CombatStart(victim); RemoveAurasWithInterruptFlags(AURA_INTERRUPT_FLAG_MELEE_ATTACK); - uint32 hitInfo; - if (attType == BASE_ATTACK) - hitInfo = HITINFO_NORMALSWING2; - else if (attType == OFF_ATTACK) - hitInfo = HITINFO_LEFTSWING; - else + if (attType != BASE_ATTACK || attType != OFF_ATTACK) return; // ignore ranged case // melee attack spell casted at main hand attack only - no normal melee dmg dealt |
