From f82bef274a03c6e43288f7585e0ce5ce6eb425d7 Mon Sep 17 00:00:00 2001 From: Marco Cawthorne Date: Fri, 5 Aug 2022 22:17:35 -0700 Subject: [PATCH] WEAPON_SATCHEL: isempty had a nonsense check --- src/shared/w_satchel.qc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/shared/w_satchel.qc b/src/shared/w_satchel.qc index 312638a..1d81b08 100644 --- a/src/shared/w_satchel.qc +++ b/src/shared/w_satchel.qc @@ -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;