Skip to content

Commit 9521543

Browse files
committed
Remove maxPlayer parameter
1 parent 38799cb commit 9521543

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/net/theevilreaper/bounce/Bounce.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public void unload() {
100100
}
101101

102102
private void registerPhases() {
103-
this.phaseSeries.add(new LobbyPhase(this.gameConfig.minPlayers(), this.gameConfig.maxPlayers(), this.gameConfig.lobbyTime()));
103+
this.phaseSeries.add(new LobbyPhase(this.gameConfig.minPlayers(), this.gameConfig.lobbyTime()));
104104
this.phaseSeries.add(new TeleportPhase(this.itemUtil, ((BounceMapProvider) this.mapProvider)::teleportToGameSpawn, this.scoreboard::initGameScoreboard));
105105
this.phaseSeries.add(new PlayingPhase(this.scoreboard::updateGameScoreboardDisplayName, () -> {
106106
this.profileService.start(((BounceMapProvider) this.mapProvider).getActiveMap(), scoreboard::createPlayerLine);

0 commit comments

Comments
 (0)