This commit is contained in:
aozhiwei 2023-03-23 22:31:45 +08:00
parent 4c0219e3e0
commit 6438c98d43
2 changed files with 5 additions and 2 deletions

View File

@ -325,8 +325,9 @@ void Incubator::SpawnWaveMon(int wave)
// 999 // 999
#if 1 #if 1
Position hero_pos; Position hero_pos;
hero_pos.SetX(content->_spawn_point.x); hero_pos.SetX(5801.422);
hero_pos.SetY(content->_spawn_point.y); hero_pos.SetY(6.000006);
hero_pos.SetZ(5607.3);
#else #else
Position hero_pos = content->spawn_point; Position hero_pos = content->spawn_point;
#endif #endif

View File

@ -1119,6 +1119,8 @@ void Player::_CMExecCommand(f8::MsgHdr& hdr, const cs::CMExecCommand& msg)
room->GetFrameNo(), room->GetFrameNo(),
0 0
); );
} else if (cmd == "gps") {
SendDebugMsg(a8::Format("gps:%f %f %f", {}));
} else if (cmd == "addbuff" && cmds.size() >= 2) { } else if (cmd == "addbuff" && cmds.size() >= 2) {
int buff_id = a8::XValue(cmds[1]); int buff_id = a8::XValue(cmds[1]);
const mt::Buff* buff_meta = mt::Buff::GetById(buff_id); const mt::Buff* buff_meta = mt::Buff::GetById(buff_id);