debug off

This commit is contained in:
Michael Wain 2024-07-08 05:21:54 +03:00
parent fdeb4e8e36
commit e83ad7c7bf

View File

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