This commit is contained in:
aozhiwei 2024-04-30 15:21:44 +08:00
parent 7be2b923d7
commit 75c325d55e

View File

@ -539,6 +539,13 @@ void Team::IncKillCount()
last_kill_frameno_ = room->GetFrameNo();
if (room->IsMobaModeRoom() && room->GetMobaOvertimeRaceFrameNo() > 0) {
room->MobaOver();
TraverseMembers
(
[] (Human* hum) -> bool
{
hum->SendUIUpdate();
return true;
});
}
}