From 6aabe4395c857a43e5df4964de57bb43f24d37d3 Mon Sep 17 00:00:00 2001 From: voed Date: Sat, 23 Apr 2016 00:16:55 +0300 Subject: [PATCH] Fixed return value to match api changes --- reapi/extra/amxmodx/scripting/reapi_test.sma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reapi/extra/amxmodx/scripting/reapi_test.sma b/reapi/extra/amxmodx/scripting/reapi_test.sma index 7b05600..650e0d7 100644 --- a/reapi/extra/amxmodx/scripting/reapi_test.sma +++ b/reapi/extra/amxmodx/scripting/reapi_test.sma @@ -10,5 +10,5 @@ public plugin_init() public CBasePlayer_GiveAmmo(const this, iAmount, szName[], iMax) { server_print(" -> CBasePlayer_GiveAmmo: index:(%d), amount:(%d), name:(%s), max:(%d)", this, iAmount, szName, iMax); - return RH_IGNORED; + return HC_CONTINUE; }