This commit is contained in:
aozhiwei 2024-09-09 15:44:19 +08:00
parent 2e428dbb1b
commit e415b8ab50
2 changed files with 2 additions and 1 deletions

View File

@ -1037,7 +1037,7 @@ void Player::_CMMove(f8::MsgHdr* hdr, const cs::CMMove& msg)
((cs::CMMove*)&msg)->clear_move_dir();
}
}
if (msg.has_move_dir()) {
if (msg.has_move_dir() && !is_client_move) {
#ifdef MYDEBUG1
a8::XPrintf("move_dir %f,%f,%f\n",
{

View File

@ -77,4 +77,5 @@ enum SMMessageId_e
_SMBattlePreInfoUpdate = 1034;
_SMAddBattleHint = 1035;
_SMDelBattleHint = 1036;
_SMPullback = 1037;
}