Because you have double function in your code:
PHP Code:
public zp_fw_grenade_frost_pre(id)
{
// Prevent frost for Nemesis
if (g_bCannotBeFrozen[id] && flag_get(g_IsNemesis, id) && !get_pcvar_num(cvar_nemesis_grenade_frost))
return PLUGIN_HANDLED;
return PLUGIN_CONTINUE;
}
public zp_fw_grenade_frost_pre(id)
{
// Prevent frost for Nemesis
if (flag_get(g_IsNemesis, id) && !get_pcvar_num(cvar_nemesis_grenade_frost))
return PLUGIN_HANDLED;
return PLUGIN_CONTINUE;
}
Remove one of them and compile plugin, i don't know, so you decide.