From d87c0eeaf119abb8a9e838acc05c7e074ea9dbd3 Mon Sep 17 00:00:00 2001 From: Zwip-Zwap Zapony Date: Tue, 18 Aug 2020 11:42:35 +0200 Subject: [PATCH] Fix Ringslinger weapon ring penalty missnapment --- src/st_stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/st_stuff.c b/src/st_stuff.c index 2fd1bda77..86e0b3754 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -2195,7 +2195,7 @@ static void ST_drawMatchHUD(void) { sprintf(penaltystr, "-%d", stplyr->ammoremoval); V_DrawString(offset + 8 + stplyr->ammoremovalweapon * 20, y, - V_REDMAP, penaltystr); + V_REDMAP|V_SNAPTOBOTTOM, penaltystr); } }