From c80c2e7a6c83be46d25b6539b7777eec5a6cb1ed Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 19 May 2021 22:48:21 +0200 Subject: [PATCH] - this wasn't supposed to be changed. --- wadsrc/static/zscript/games/blood/ui/sbar.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/games/blood/ui/sbar.zs b/wadsrc/static/zscript/games/blood/ui/sbar.zs index d326790da..adb8df534 100644 --- a/wadsrc/static/zscript/games/blood/ui/sbar.zs +++ b/wadsrc/static/zscript/games/blood/ui/sbar.zs @@ -526,7 +526,7 @@ class BloodStatusBar : RazeStatusBar int num = pPlayer.ammoCount[i]; if (i == 6) num /= 10; - DrawStatNumber("%3d", num, "SBarHealthAmount", x, y, i == pPlayer.weaponAmmo ? -128 : 32, 10); + DrawStatNumber("%3d", num, "SBarAmmoAmount", x, y, i == pPlayer.weaponAmmo ? -128 : 32, 10); } DrawStatNumber("%2d", pPlayer.ammoCount[10], "SBarAmmoAmount", 291, 194, pPlayer.weaponAmmo == 10 ? -128 : 32, 10); DrawStatNumber("%2d", pPlayer.ammoCount[11], "SBarAmmoAmount", 309, 194, pPlayer.weaponAmmo == 11 ? -128 : 32, 10);