Skip to content

Commit 05f9d0c

Browse files
authored
Merge pull request #878 from RyanYappert/fix/hotfixes-06-06
Fix: Fix EXM parties not being able to be formed.
2 parents 3e1b7f4 + acc0081 commit 05f9d0c

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)