2
0
mirror of https://github.com/s1lentq/reapi.git synced 2024-10-16 15:27:06 +03:00

Fixed return value to match api changes

This commit is contained in:
voed 2016-04-23 00:16:55 +03:00
parent b7c2c22cbb
commit 6aabe4395c

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