From 6b8efe3438767d44a6d5f23ed8f4f753acb867bc Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sun, 18 Aug 2024 14:49:44 -0700 Subject: [PATCH] fix HP-only mode it was showing the bar intended as the warning that there's no HP under the shield. but I tried it and that bar just makes it look like there *is* a sliver of health, which there isn't. so it's better off without that in either mode. --- vacuum_gambit.p8 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vacuum_gambit.p8 b/vacuum_gambit.p8 index 46fed05..891cfb1 100644 --- a/vacuum_gambit.p8 +++ b/vacuum_gambit.p8 @@ -347,8 +347,7 @@ function drawhud() elseif mxs > 0 then vertmeter(121,67,124,124,cs,mxs,shlcols) elseif mxh > 1 then - line(121,124,124,124,0x89) - vertmeter(121,67,124,123,ch-1,mxh-1,hpcols) + vertmeter(121,67,124,124,ch-1,mxh-1,hpcols) else print("!", 122, 94, 9) print("!", 121, 93, 8)