Skip to content

Commit 150136e

Browse files
Fix scoreboard not working on party split match (#143)
1 parent 76be560 commit 150136e

File tree

1 file changed

+2
-0
lines changed
  • Plugin/src/main/java/dev/lrxh/neptune/feature/party/impl

1 file changed

+2
-0
lines changed

Plugin/src/main/java/dev/lrxh/neptune/feature/party/impl/EventType.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ public void start(List<Participant> participants, Kit kit) {
6161

6262
MatchTeam teamA = new MatchTeam(teamAList);
6363
MatchTeam teamB = new MatchTeam(teamBList);
64+
teamA.setOpponentTeam(teamB);
65+
teamB.setOpponentTeam(teamA);
6466

6567
kit.getRandomArena().thenAccept(arena -> {
6668
if (arena == null) {

0 commit comments

Comments
 (0)