This commit is contained in:
aozhiwei 2024-04-12 14:39:56 +08:00
parent fdd88cc7d8
commit 84b4dc80e9
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
[ [
{ {
"url": "http://127.0.0.1:8321/webapp/index.php?c=Proxy&a=get" "url": "http://127.0.0.1:8321/webapp/index.php"
} }
] ]

View File

@ -412,6 +412,7 @@ void Player::_CMExecCommand(f8::MsgHdr* hdr, const cs::CMExecCommand& msg)
} else if (cmd == "fast_forward") { } else if (cmd == "fast_forward") {
room->GMFastForward(); room->GMFastForward();
} else if (cmd == "last_pickup") { } else if (cmd == "last_pickup") {
#ifdef MYDEBUG
SendDebugMsg(a8::Format("拾取道具: 距离当前时间(毫秒):%d 数量:%d", SendDebugMsg(a8::Format("拾取道具: 距离当前时间(毫秒):%d 数量:%d",
{ {
(room->GetFrameNo() - last_interaction_frameno_) * FRAME_RATE_MS, (room->GetFrameNo() - last_interaction_frameno_) * FRAME_RATE_MS,
@ -443,6 +444,7 @@ void Player::_CMExecCommand(f8::MsgHdr* hdr, const cs::CMExecCommand& msg)
obj_uniid, obj_uniid,
item_id, item_id,
})); }));
#endif
} }
SendDebugMsg("道具拾取: <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"); SendDebugMsg("道具拾取: <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
} else if (cmd == "winexp" && cmds.size() >= 1) { } else if (cmd == "winexp" && cmds.size() >= 1) {