2
0
mirror of https://github.com/alliedmodders/amxmodx.git synced 2025-06-21 01:59:34 +03:00

Statsx: Replace len hardcoded contents by sizeof

This commit is contained in:
Freeman-AM 2014-10-11 14:10:36 +02:00
parent 54ab06493a
commit ee6285c79d

@ -1347,7 +1347,7 @@ public eventSpawn(id)
args[0] = id
if (g_iPluginMode & MODE_HUD_DELAY)
set_task(0.1, "delay_spawn", 200 + id, args, 1)
set_task(0.1, "delay_spawn", 200 + id, args, sizeof(args))
else
delay_spawn(args)