fix(Core/Spells): MC should work on mounted targets (#23905)

This commit is contained in:
thomasjteachey
2025-11-26 20:19:01 -05:00
committed by GitHub
parent dfe44b7e86
commit 4d16a5ccee
3 changed files with 8 additions and 3 deletions

View File

@@ -18388,7 +18388,7 @@ bool Unit::SetCharmedBy(Unit* charmer, CharmType type, AuraApplication const* au
}
// dismount players when charmed
if (IsPlayer())
if (IsPlayer() && type != CHARM_TYPE_POSSESS)
RemoveAurasByType(SPELL_AURA_MOUNTED);
if (charmer->IsPlayer())