From 85f59b573580b932d59c71d46f6fb15d1c7c66cd Mon Sep 17 00:00:00 2001 From: havoc Date: Wed, 1 Dec 2004 23:13:13 +0000 Subject: [PATCH] fix a typo git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4815 d7cf8633-e32d-0410-b094-e92efae38249 --- sv_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__); } -- 2.39.2