Skip to content

Commit

Permalink
Adjust fix of #31 and #30
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-i-martin committed Aug 21, 2023
1 parent 6d4f394 commit 123fe29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,5 @@ buildNumber.properties

# Common working directory
run/

node_modules/
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public Party(int maxSize, Player host, PlayerServer server) {
this.players = new Vector<>(maxSize);
this.maxSize = maxSize;
this.leader = host;
this.players.add(host);
this.server = new WeakReference<>(server);
}

Expand Down

0 comments on commit 123fe29

Please sign in to comment.