From 38d8b7189b819203fd6c0fbfee8fc3a14610d0e8 Mon Sep 17 00:00:00 2001 From: Spoike Date: Sat, 29 Aug 2009 15:08:39 +0000 Subject: [PATCH] Use the correct field names for prydon cursor. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3352 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/server/sv_user.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/server/sv_user.c b/engine/server/sv_user.c index 59fc6882a..77d7c5d41 100644 --- a/engine/server/sv_user.c +++ b/engine/server/sv_user.c @@ -5301,9 +5301,9 @@ void SV_ReadPrydonCursor(void) if (svprogfuncs) { cursor_screen = svprogfuncs->GetEdictFieldValue(svprogfuncs, host_client->edict, "cursor_screen", NULL); - cursor_start = svprogfuncs->GetEdictFieldValue(svprogfuncs, host_client->edict, "cursor_start", NULL); - cursor_impact = svprogfuncs->GetEdictFieldValue(svprogfuncs, host_client->edict, "cursor_impact", NULL); - cursor_entitynumber = svprogfuncs->GetEdictFieldValue(svprogfuncs, host_client->edict, "cursor_entitynumber", NULL); + cursor_start = svprogfuncs->GetEdictFieldValue(svprogfuncs, host_client->edict, "cursor_trace_start", NULL); + cursor_impact = svprogfuncs->GetEdictFieldValue(svprogfuncs, host_client->edict, "cursor_trace_endpos", NULL); + cursor_entitynumber = svprogfuncs->GetEdictFieldValue(svprogfuncs, host_client->edict, "cursor_trace_ent", NULL); } else {