Skip to content

Commit acc0081

Browse files
committed
Fix EXM parties not being able to be formed.
1 parent 3e1b7f4 commit acc0081

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Arrowgene.Ddon.GameServer/Party/PartyGroup.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,9 @@ public PlayerPartyMember Accept(GameClient client)
223223
$"[PartyId:{Id}][Accept] invitation expired");
224224
}
225225

226-
if (Leader is null)
226+
if (ContentId == 0 && Leader is null)
227227
{
228+
// Leaderless check only applies for regular parties.
228229
throw new ResponseErrorException(ErrorCode.ERROR_CODE_PARTY_INVITE_FAIL_REASON_NO_LEADER,
229230
$"[PartyId:{Id}][Accept] has no leader");
230231
}

0 commit comments

Comments
 (0)