WEAPON_P228: fix bug where you can reload the gun indefinitely. thanks /alpha/
This commit is contained in:
parent
125550e4c3
commit
c7d4f3631a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue