From 1c970daca1c62539325df935b7afce0ecc08823b Mon Sep 17 00:00:00 2001 From: IronClawTrem Date: Tue, 27 Aug 2019 01:15:15 +0100 Subject: Implement g_gradualFreeFunds to improve time funds mechanic --- src/game/g_local.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game/g_local.h') diff --git a/src/game/g_local.h b/src/game/g_local.h index 5a41a78..c6352cd 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -422,6 +422,7 @@ typedef struct int ping; int lastTeamStatus; + int lastFreekillTime; int lastFloodTime; // level.time of last flood-limited command int floodDemerits; // number of flood demerits accumulated @@ -508,8 +509,6 @@ struct gclient_s int airOutTime; - int lastKillTime; // for multiple kill rewards - qboolean fireHeld; // used for hook qboolean fire2Held; // used for alt fire gentity_t *hook; // grapple hook if out @@ -1486,6 +1485,7 @@ extern vmCvar_t g_aimbotAdvertBanReason; extern vmCvar_t g_Bubbles; extern vmCvar_t g_scrimMode; +extern vmCvar_t g_gradualFreeFunds; void trap_Printf( const char *fmt ); void trap_Error( const char *fmt ); -- cgit