From 0852dfa112b6f55044f6097768957f960c0b22b0 Mon Sep 17 00:00:00 2001 From: Borja Ferrer Date: Wed, 22 Feb 2006 20:32:59 +0000 Subject: [PATCH] added missing pcvar natives --- plugins/include/amxmodx.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/include/amxmodx.inc b/plugins/include/amxmodx.inc index 95e584e4..7746cca2 100755 --- a/plugins/include/amxmodx.inc +++ b/plugins/include/amxmodx.inc @@ -989,10 +989,10 @@ native DestroyForward(forward_handle); //Get a cvar pointer. Returns 0 if not found. native get_cvar_pointer(const cvar[]); +native get_pcvar_flags(pcvar); +native set_pcvar_flags(pcvar, flags); native get_pcvar_num(pcvar); native set_pcvar_num(pcvar, num); native Float:get_pcvar_float(pcvar); -native set_pcvar(pcvar, Float:num); +native set_pcvar_float(pcvar, Float:num); native get_pcvar_string(pcvar, string[], maxlen); - -