Revert enforce player limit on Direct Connection

This commit is contained in:
Agent X 2023-12-11 17:39:32 -05:00
parent 4f3cb2a53d
commit 578995a035
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ void network_send_join(struct Packet* joinRequestPacket) {
break;
}
}
if (globalIndex == UNKNOWN_LOCAL_INDEX || globalIndex >= network_player_connected_count()) {
if (globalIndex == UNKNOWN_LOCAL_INDEX) {
network_send_kick(0, EKT_FULL_PARTY);
return;
}