WEAPON_SATCHEL: isempty had a nonsense check

This commit is contained in:
Marco Cawthorne 2022-08-05 22:17:35 -07:00
parent 0e4baba0cd
commit f82bef274a
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 1 additions and 2 deletions

View File

@ -306,8 +306,7 @@ w_satchel_hudpic(player pl, int selected, vector pos, float a)
int
w_satchel_isempty(player pl)
{
if (pl.satchel_chg <= 0)
if (pl.ammo_satchel <= 0)
return 1;
return 0;