players debug patch

This commit is contained in:
Michael Wain 2024-03-13 17:45:14 +03:00
parent f6d76fafc6
commit 4f4955338d

@ -180,7 +180,7 @@ public class BunkerBot extends TelegramLongPollingBot {
private void startGame() {
if( gameState != GameState.JOINING )
return;
if(players.size() < 2) {
if(players.size() < 1) {
sendApi(new SendMessage(groupId, Constants.PLAYERS_LESS_THAN_ZERO));
return;
}