From dae467032baef273518f735fa625f2d467bde428 Mon Sep 17 00:00:00 2001 From: 9iky6 Date: Sat, 26 Jul 2014 20:57:23 +0600 Subject: [PATCH] Update statsx.sma --- plugins/cstrike/statsx.sma | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/cstrike/statsx.sma b/plugins/cstrike/statsx.sma index bc0cdde6..ce0fb003 100755 --- a/plugins/cstrike/statsx.sma +++ b/plugins/cstrike/statsx.sma @@ -1330,7 +1330,7 @@ public eventStartRound() } // Clear game stats, incl '0' that is sum of all users. - for (id = 0; id < MaxClients; id++) + for (id = 1; id <= MaxClients; id++) { for (i = 0; i < 8; i++) g_izUserGameStats[id][i] = 0 @@ -1348,7 +1348,7 @@ public eventStartRound() } // Clear user round stats, incl '0' that is sum of all users. - for (id = 0; id < MaxClients; id++) + for (id = 1; id <= MaxClients; id++) { g_izUserRndName[id][0] = 0