Skip to content

Commit 8a0fcdb

Browse files
committed
Allow max 2 bots in a match
1 parent bbed9b5 commit 8a0fcdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main/java/ru/croccode/hypernull/server/HyperNull.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
public class HyperNull implements Runnable, Closeable {
3131

3232
private static final int MIN_FRIENDLY_BOTS = 1;
33-
private static final int MAX_FRIENDLY_BOTS = 4;
33+
private static final int MAX_FRIENDLY_BOTS = 2;
3434
private static final int MIN_DEATHMATCH_BOTS = 2;
35-
private static final int MAX_DEATHMATCH_BOTS = 4;
35+
private static final int MAX_DEATHMATCH_BOTS = 2;
3636

3737
private final MapRegistry mapRegistry;
3838

0 commit comments

Comments
 (0)