From b33e76d9c4e799a2de801716feac7e506755497c Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 31 Oct 2006 19:48:47 +0000 Subject: [PATCH] Fixed bug am46559 --- plugins/cstrike/miscstats.sma | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/cstrike/miscstats.sma b/plugins/cstrike/miscstats.sma index 1106b44f..202d5a79 100755 --- a/plugins/cstrike/miscstats.sma +++ b/plugins/cstrike/miscstats.sma @@ -625,6 +625,11 @@ public checkKills(param[]) if (a > -1) { + if (a > 6) + { + a = 6 + } + if (MultiKill) { new name[32] @@ -632,9 +637,6 @@ public checkKills(param[]) get_user_name(id, name, 31) set_hudmessage(255, 0, 100, 0.05, 0.50, 2, 0.02, 6.0, 0.01, 0.1, -1) - if (a > 6) - a = 6 - ShowSyncHudMsg(0, g_left_sync, g_MultiKillMsg[a], name, LANG_PLAYER, "WITH", g_multiKills[id][0], LANG_PLAYER, "KILLS", g_multiKills[id][1], LANG_PLAYER, "HS") }