This commit is contained in:
aozhiwei 2023-03-24 21:36:27 +08:00
parent 5ecce5e9d9
commit fcb38ec68e
2 changed files with 17 additions and 0 deletions

View File

@ -1265,6 +1265,16 @@ void Human::DeadDrop()
case IS_OIL_BUCKET: case IS_OIL_BUCKET:
{ {
}
break;
case IS_9MM:
case IS_556MM:
case IS_762MM:
case IS_12GAUGE:
case IS_RPG:
case IS_ICE:
{
} }
break; break;
default: default:

View File

@ -785,6 +785,13 @@ void Player::_CMReconnect(f8::MsgHdr& hdr, const cs::CMReconnect& msg)
void Player::_CMMove(f8::MsgHdr& hdr, const cs::CMMove& msg) void Player::_CMMove(f8::MsgHdr& hdr, const cs::CMMove& msg)
{ {
#ifdef DEBUG
if (msg.shot_start() || msg.shot_hold()) {
a8::XPrintf("CMMove.Shot\n",
{
});
}
#endif
long long pre_frameno = last_cmmove_frameno_; long long pre_frameno = last_cmmove_frameno_;
last_cmmove_frameno_ = room->GetFrameNo(); last_cmmove_frameno_ = room->GetFrameNo();
moving = false; moving = false;