diff options
Diffstat (limited to 'source/cl_parse.c')
-rw-r--r-- | source/cl_parse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/cl_parse.c b/source/cl_parse.c index bb1f0e1..5b32eaf 100644 --- a/source/cl_parse.c +++ b/source/cl_parse.c @@ -1012,7 +1012,7 @@ ACTION MESSAGES tent_params_t te; -static void CL_ParseTEnt( void ) { +static void CL_ParseTEntParams( void ) { te.type = MSG_ReadByte(); switch( te.type ) { @@ -1132,7 +1132,7 @@ static void CL_ParseTEnt( void ) { Com_Error( ERR_DROP, "%s: bad type", __func__ ); } - CL_AddTEnt(); + CL_ParseTEnt(); } /* @@ -1532,7 +1532,7 @@ void CL_ParseServerMessage( void ) { break; case svc_temp_entity: - CL_ParseTEnt(); + CL_ParseTEntParams(); break; case svc_muzzleflash: |