This commit is contained in:
aozhiwei 2024-09-14 11:30:10 +08:00
parent 9229f01d24
commit 2e30ed87a9

View File

@ -2680,7 +2680,8 @@ int Room::JoinWithCustomBattle(std::shared_ptr<CustomBattle> p)
{ {
if (!m->IsAndroid()) { if (!m->IsAndroid()) {
Player* hum = InternalCreatePlayer(p, m, room_team); Player* hum = InternalCreatePlayer(p, m, room_team);
hum->is_client_move = m->GetCMJoinMsg()->is_client_move(); //hum->is_client_move = m->GetCMJoinMsg()->is_client_move();
hum->is_client_move = 1;
} else { } else {
Human* hum = CreateAndroidWithCustomMember(m, room_team); Human* hum = CreateAndroidWithCustomMember(m, room_team);
} }