Prevent useless keep-alive packets

This commit is contained in:
MysterD 2020-09-19 01:56:45 -07:00
parent fa0f195c92
commit 587b52f1be
1 changed files with 1 additions and 0 deletions

View File

@ -115,6 +115,7 @@ void network_send(struct Packet* p) {
p->localIndex = i;
network_send_to(i, p);
}
gLastNetworkSend = clock();
}
void network_receive(u8 localIndex, u8* data, u16 dataLength) {