Skip to content

Commit

Permalink
trying to see bigger matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenil committed May 1, 2024
1 parent 3828391 commit 772fe9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/uta/cse3310/SubLobby.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public SubLobby(int subLobbySize, Player player1){
this.lobbyID = "lobby_"+(++lobbyCounter); //creates unique id for each game
this.players = new ArrayList<>(); //array for sublobby players
this.players.add(player1); //sets the creater of lobby as the first player
this.game = new Game("words.txt",10,20);
this.game = new Game("words.txt",175,50);
player1.setColor("blue");
}

Expand Down

0 comments on commit 772fe9a

Please sign in to comment.