Fix packet type desync

This commit is contained in:
Wolfy 2020-04-05 16:11:30 -05:00
parent b483e42d94
commit cedc79fd4b
1 changed files with 2 additions and 1 deletions

View File

@ -1159,7 +1159,8 @@ boolean HGetPacket(void)
|| netbuffer->packettype == PT_PLAYERINFO
|| netbuffer->packettype == PT_REQUESTFILE
|| netbuffer->packettype == PT_ASKINFOVIAMS
|| netbuffer->packettype == PT_CLIENTJOIN))
|| netbuffer->packettype == PT_CLIENTJOIN
|| netbuffer->packettype == PT_TELLFILESNEEDED))
{
DEBFILE(va("New node sent an unexpected %s packet\n", packettypename[netbuffer->packettype]));
CONS_Alert(CONS_NOTICE, "New node sent an unexpected %s packet\n", packettypename[netbuffer->packettype]);