From 97aac34dc966099a1feffb7ba1bef2a8ad47b8a0 Mon Sep 17 00:00:00 2001 From: Freeman-AM Date: Sat, 11 Oct 2014 14:02:15 +0200 Subject: [PATCH] Miscstats: replace len hardcoded content by sizeof --- plugins/cstrike/miscstats.sma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/cstrike/miscstats.sma b/plugins/cstrike/miscstats.sma index 8fafd3a6..d64a1332 100755 --- a/plugins/cstrike/miscstats.sma +++ b/plugins/cstrike/miscstats.sma @@ -539,7 +539,7 @@ public client_death(killer, victim, wpnindex, hitplace, TK) param[0] = killer param[1] = g_multiKills[killer][0] - set_task(4.0 + float(param[1]), "checkKills", killer, param, 2) + set_task(4.0 + float(param[1]), "checkKills", killer, param, sizeof(param)) } }