From 465bdb724cbd651303143958e7eef2e8577321e9 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Mon, 4 Mar 2002 23:06:24 +0000 Subject: The real bugfix to cg_wwFollow not being persistant --- src/game/g_client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game/g_client.c') diff --git a/src/game/g_client.c b/src/game/g_client.c index 02fd38ec..b814aa47 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -1069,9 +1069,9 @@ void ClientUserinfoChanged( int clientNum ) { // wallwalk follow s = Info_ValueForKey( userinfo, "cg_wwFollow" ); if( atoi( s ) ) - client->ps.stats[ STAT_STATE ] |= SS_WALLCLIMBINGFOLLOW; + client->ps.persistant[ PERS_STATE ] |= PS_WALLCLIMBINGFOLLOW; else - client->ps.stats[ STAT_STATE ] &= ~SS_WALLCLIMBINGFOLLOW; + client->ps.persistant[ PERS_STATE ] &= ~PS_WALLCLIMBINGFOLLOW; // teamInfo s = Info_ValueForKey( userinfo, "teamoverlay" ); -- cgit