aboutsummaryrefslogtreecommitdiff
path: root/src/game/Unit.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2009-06-07 23:32:35 -0500
committermegamage <none@none>2009-06-07 23:32:35 -0500
commita328728cb85c1166db4efa46d71d96d7c16d0ee3 (patch)
treed8e972711d3be06df13b2c611c58e2b222741654 /src/game/Unit.cpp
parent5e7d184734b24efdfc1cba6ec6b403015eeeaf37 (diff)
*Implement spell aura 177.
--HG-- branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r--src/game/Unit.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp
index 14ad660df6d..bc2f6b0b540 100644
--- a/src/game/Unit.cpp
+++ b/src/game/Unit.cpp
@@ -8711,6 +8711,7 @@ void Unit::RemoveCharmAuras()
RemoveAurasByType(SPELL_AURA_MOD_CHARM);
RemoveAurasByType(SPELL_AURA_MOD_POSSESS_PET);
RemoveAurasByType(SPELL_AURA_MOD_POSSESS);
+ RemoveAurasByType(SPELL_AURA_AOE_CHARM);
}
void Unit::UnsummonAllTotems()
@@ -13673,6 +13674,7 @@ void Unit::SetCharmedBy(Unit* charmer, CharmType type)
((Player*)charmer)->CharmSpellInitialize();
break;
default:
+ case CHARM_TYPE_CONVERT:
break;
}
}
@@ -13762,6 +13764,7 @@ void Unit::RemoveCharmedBy(Unit *charmer)
}
break;
default:
+ case CHARM_TYPE_CONVERT:
break;
}
}