Skip to content

Commit

Permalink
Fixed fw param int native
Browse files Browse the repository at this point in the history
  • Loading branch information
PerfectScrash committed Feb 12, 2022
1 parent 30e5924 commit b40879b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/amxmodx/scripting/zombie_plague_special_45.sma
Original file line number Diff line number Diff line change
Expand Up @@ -11231,7 +11231,7 @@ public native_set_fw_param_string(plugin_id, num_params) { // Native: zp_set_par
}
public native_set_fw_param_int(plugin_id, num_params) { // Native: zp_set_fw_param_int(int_id, value)
static int_id; int_id = get_param(1);
g_FW_intParam[int_id+1] = get_param(2);
g_FW_intParam[int_id] = get_param(2);
return 1;
}

Expand Down

0 comments on commit b40879b

Please sign in to comment.