From: havoc Date: Wed, 1 Dec 2004 23:13:13 +0000 (+0000) Subject: fix a typo X-Git-Tag: xonotic-v0.1.0preview~5322 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=85f59b573580b932d59c71d46f6fb15d1c7c66cd;p=xonotic%2Fdarkplaces.git fix a typo git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4815 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/sv_user.c b/sv_user.c index dec9d6c1..4d767753 100644 --- a/sv_user.c +++ b/sv_user.c @@ -691,7 +691,7 @@ void SV_ReadClientMove (usercmd_t *move) move->cursor_entitynumber = MSG_ReadShort(); // as requested by FrikaC, cursor_trace_ent is reset to world if the // entity is free at time of receipt - if (EDICT_NUM(move->cursor_entitynumber)->e->freed) + if (EDICT_NUM(move->cursor_entitynumber)->e->free) move->cursor_entitynumber = 0; if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__); }