summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game/g_main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c
index f112e9af..c57a15ad 100644
--- a/src/game/g_main.c
+++ b/src/game/g_main.c
@@ -1707,6 +1707,10 @@ void G_SendGameStat( team_t team )
int i, dataLength, entryLength;
gclient_t *cl;
+ // games with cheats enabled are not very good for balance statistics
+ if( g_cheats.integer )
+ return;
+
trap_Cvar_VariableStringBuffer( "mapname", map, sizeof( map ) );
switch( team )