Make new game auto start if the majority of the players in the lobby room click the "ready" buttom, so the game can start even if the owner is AFK on the lobby room. I have already seen dozens of games with a lot of players ready to play on the lobby room but the owner is AFK. Of course it should have a minimum amount of players to turn this feature on, like 4 or 5+ players.
if(players.amount()>=5 && players.ready()>= players.amount()/2){
game().start
}
more or less like this