This commit is contained in:
aozhiwei 2024-08-29 19:11:57 +08:00
parent 959b922454
commit d0442a0d30

View File

@ -678,6 +678,13 @@ void Incubator::StartNewBattleMode()
if (room->IsGameOver()) { if (room->IsGameOver()) {
return; return;
} }
room->TraverseAliveHumanList
(
[selected_player] (Human* hum) -> bool
{
//selected_player = hum;
return true;
});
} }
}, },
&xtimer_attacher_); &xtimer_attacher_);