mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-01-07 08:01:16 +00:00
Allow pings through unknown players
This commit is contained in:
parent
7df87d583e
commit
33b5552ea6
1 changed files with 3 additions and 1 deletions
|
@ -202,7 +202,9 @@ bool network_allow_unknown_local_index(enum PacketType packetType) {
|
|||
|| (packetType == PACKET_DOWNLOAD_REQUEST)
|
||||
|| (packetType == PACKET_DOWNLOAD)
|
||||
|| (packetType == PACKET_KEEP_ALIVE)
|
||||
|| (packetType == PACKET_DEBUG_SYNC);
|
||||
|| (packetType == PACKET_DEBUG_SYNC)
|
||||
|| (packetType == PACKET_PING)
|
||||
|| (packetType == PACKET_PONG);
|
||||
}
|
||||
|
||||
void network_send_to(u8 localIndex, struct Packet* p) {
|
||||
|
|
Loading…
Reference in a new issue