Skip to content

Commit

Permalink
Fix participants on start
Browse files Browse the repository at this point in the history
  • Loading branch information
TBG1000 authored Jul 23, 2022
1 parent 0f1eb4e commit 1f17e44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/me/tbg/match/bot/MatchStartListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void onMatchStart(MatchStartEvent event) {
.addInlineField("Created by", bot.getMapAuthors(match))
.addInlineField("Pools", bot.getMapPools(match))
.addField("Objective", map.getDescription())
.addInlineField("Participants", String.valueOf(match.getPlayers().size()))
.addInlineField("Participants", String.valueOf(match.getParticipants().size()))
.addInlineField(
"Observers", String.valueOf(match.getDefaultParty().getPlayers().size()))
.addInlineField("Staff", String.valueOf(bot.getOnlineStaffCount(match)))
Expand Down

0 comments on commit 1f17e44

Please sign in to comment.