@@ -962,6 +962,13 @@ static void NetMsg_Parser_Parse_svc_spawnstatic(void)
962962 }
963963}
964964
965+ static void NetMsg_Parser_Parse_svc_fte_spawnstatic2 (void )
966+ {
967+ unsigned int entnum , bits , morebits ;
968+ NetMsg_Parser_ParseEntityNum (& entnum , & bits , & morebits );
969+ NetMsg_Parser_ParseEntityDelta (bits , morebits );
970+ }
971+
965972static void NetMsg_Parser_Parse_svc_spawnbaseline (void )
966973{
967974 int i ;
@@ -979,6 +986,13 @@ static void NetMsg_Parser_Parse_svc_spawnbaseline(void)
979986 }
980987}
981988
989+ static void NetMsg_Parser_Parse_svc_fte_spawnbaseline2 (void )
990+ {
991+ unsigned int entnum , bits , morebits ;
992+ NetMsg_Parser_ParseEntityNum (& entnum , & bits , & morebits );
993+ NetMsg_Parser_ParseEntityDelta (bits , morebits );
994+ }
995+
982996static void NetMsg_Parser_Parse_svc_temp_entity (void )
983997{
984998 int i ;
@@ -1596,6 +1610,11 @@ qbool NetMsg_Parser_StartParse(mvd_info_t *mvd)
15961610 NetMsg_Parser_Parse_svc_spawnbaseline ();
15971611 break ;
15981612 }
1613+ case svc_fte_spawnbaseline2 :
1614+ {
1615+ NetMsg_Parser_Parse_svc_fte_spawnbaseline2 ();
1616+ break ;
1617+ }
15991618 case svc_updatefrags :
16001619 {
16011620 NetMsg_Parser_Parse_svc_updatefrags (mvd );
@@ -1711,6 +1730,11 @@ qbool NetMsg_Parser_StartParse(mvd_info_t *mvd)
17111730 NetMsg_Parser_Parse_svc_spawnstatic ();
17121731 break ;
17131732 }
1733+ case svc_fte_spawnstatic2 :
1734+ {
1735+ NetMsg_Parser_Parse_svc_fte_spawnstatic2 ();
1736+ break ;
1737+ }
17141738 case svc_foundsecret :
17151739 {
17161740 NetMsg_Parser_Parse_svc_foundsecret ();
0 commit comments