Skip to content

Commit

Permalink
Fix FFA not restricting joins on blitz (#1294)
Browse files Browse the repository at this point in the history
Signed-off-by: Pablo Herrera <[email protected]>
  • Loading branch information
Pablete1234 authored Jan 24, 2024
1 parent 682f968 commit a28851e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public boolean join(MatchPlayer joining, JoinRequest request, JoinResult result)

if (!result.isSuccess()) return false;

if (!match.setParty(joining, getTribute(joining))) {
if (!match.setParty(joining, getTribute(joining), request)) {
return false;
}

Expand Down

0 comments on commit a28851e

Please sign in to comment.