2
0
mirror of https://github.com/rehlds/reapi.git synced 2025-02-05 10:10:38 +03:00

Merge pull request #5 from voed/patch-1

Fixed return value to match api changes
This commit is contained in:
s1lentq 2016-04-23 17:04:05 +06:00
commit 3000269b18

View File

@ -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;
}