fix(Core/Player): Fix two uninitialized variables causing bad fall damage (#23788)

This commit is contained in:
killerwife
2025-11-19 13:05:29 +01:00
committed by GitHub
parent 4545ca3e87
commit 22ffaf6f57

View File

@@ -420,6 +420,8 @@ Player::Player(WorldSession* session): Unit(), m_mover(this)
sScriptMgr->OnConstructPlayer(this);
_expectingChangeTransport = false;
_pendingFlightChangeCounter = 0;
_mapChangeOrderCounter = 0;
}
Player::~Player()