diff --git a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/tournament/SwissPairingMechanism.java b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/tournament/SwissPairingMechanism.java index 0c759a7a2..258758293 100644 --- a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/tournament/SwissPairingMechanism.java +++ b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/tournament/SwissPairingMechanism.java @@ -181,7 +181,7 @@ public class SwissPairingMechanism implements PairingMechanism { } private static int getRoundCountBasedOnNumberOfPlayers(int numberOfPlayers) { - return (int) (Math.ceil(Math.log(numberOfPlayers) / Math.log(2))) + 1; + return (int) (Math.ceil(Math.log(numberOfPlayers) / Math.log(2))); } public static void main(String[] args) {