We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e1b7f4 commit acc0081Copy full SHA for acc0081
1 file changed
Arrowgene.Ddon.GameServer/Party/PartyGroup.cs
@@ -223,8 +223,9 @@ public PlayerPartyMember Accept(GameClient client)
223
$"[PartyId:{Id}][Accept] invitation expired");
224
}
225
226
- if (Leader is null)
+ if (ContentId == 0 && Leader is null)
227
{
228
+ // Leaderless check only applies for regular parties.
229
throw new ResponseErrorException(ErrorCode.ERROR_CODE_PARTY_INVITE_FAIL_REASON_NO_LEADER,
230
$"[PartyId:{Id}][Accept] has no leader");
231
0 commit comments