Core/Spells: Implement AURA_INTERRUPT_FLAG_JUMP

This commit is contained in:
Shocker
2018-10-13 12:11:07 +03:00
parent 865eb1733c
commit 937d6b1e6f
3 changed files with 4 additions and 2 deletions

View File

@@ -439,6 +439,9 @@ void WorldSession::HandleMovementOpcode(OpcodeClient opcode, MovementInfo& movem
}
else
plrMover->RemoveFlag(PLAYER_FLAGS, PLAYER_FLAGS_IS_OUT_OF_BOUNDS);
if (opcode == CMSG_MOVE_JUMP)
plrMover->RemoveAurasWithInterruptFlags(AURA_INTERRUPT_FLAG_JUMP, 605); // Mind Control
}
}