summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game/g_cmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c
index 1005c6f1..d94ea8c2 100644
--- a/src/game/g_cmds.c
+++ b/src/game/g_cmds.c
@@ -417,9 +417,9 @@ void Cmd_Give_f( gentity_t *ent )
TEAM_ALIENS ? ALIEN_CREDITS_PER_KILL : 1.0f );
// clamp credits manually, as G_AddCreditToClient() expects a short int
- if( credits > SHRT_MAX )
+ if( credits > 30000.0f )
credits = 30000.0f;
- else if( credits < SHRT_MIN )
+ else if( credits < -30000.0f )
credits = -30000.0f;
}