From 94bcf797109d56a2ab95cb927d9df46d384fce5c Mon Sep 17 00:00:00 2001 From: toaster Date: Sat, 31 Dec 2022 22:34:19 +0000 Subject: [PATCH] Restrict collecting rings in GTR_SPHERES, not GTR_BUMPERS! --- src/p_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_user.c b/src/p_user.c index a27890817..a51b161a3 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -502,7 +502,7 @@ INT32 P_GivePlayerRings(player_t *player, INT32 num_rings) if (!player->mo) return 0; - if ((gametyperules & GTR_BUMPERS)) // No rings in Battle Mode + if ((gametyperules & GTR_SPHERES)) // No rings in Battle Mode return 0; test = player->rings + num_rings;