2
0
mirror of https://github.com/rehlds/reapi.git synced 2025-01-16 00:28:17 +03:00

arg_amount not used in rg_get_user_ammo (#192)

This commit is contained in:
Franco Romaniello 2021-05-21 13:16:43 +02:00 committed by GitHub
parent 8908572dc9
commit 6d3d77a434
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1151,7 +1151,7 @@ cell AMX_NATIVE_CALL rg_set_user_ammo(AMX *amx, cell *params)
*/
cell AMX_NATIVE_CALL rg_get_user_ammo(AMX *amx, cell *params)
{
enum args_e { arg_count, arg_index, arg_weapon_id, arg_amount };
enum args_e { arg_count, arg_index, arg_weapon_id };
CHECK_ISPLAYER(arg_index);