WEAPON_P228: fix bug where you can reload the gun indefinitely. thanks /alpha/

This commit is contained in:
Marco Cawthorne 2023-03-01 21:54:18 -08:00
parent 125550e4c3
commit c7d4f3631a
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ w_p228_reload(player pl)
if (pl.w_attack_next > 0.0)
return;
if (pl.p228_mag >= 30)
if (pl.p228_mag >= 13)
return;
if (!pl.ammo_357sig)
return;