From 3df060cad66635a827d947c2897991011d11396c Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 15 Nov 2007 18:05:16 +0000 Subject: [PATCH] fixed amb1143 - typo in SetClientKeyValue() --- plugins/amxmod_compat/vexdum.sma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/amxmod_compat/vexdum.sma b/plugins/amxmod_compat/vexdum.sma index 037967ff..4647df3b 100644 --- a/plugins/amxmod_compat/vexdum.sma +++ b/plugins/amxmod_compat/vexdum.sma @@ -118,7 +118,7 @@ SetClientKeyValue(id, const key[], const value[]) { new buffer = engfunc(EngFunc_GetInfoKeyBuffer, id) - return engfunc(EngFunc_SetClientKeyValue, buffer, key, value) + return engfunc(EngFunc_SetClientKeyValue, id, buffer, key, value) } GetClientKeyValue(id, const key[], value[], maxlen)