Restrict collecting rings in GTR_SPHERES, not GTR_BUMPERS!

This commit is contained in:
toaster 2022-12-31 22:34:19 +00:00
parent 98646ef65b
commit 94bcf79710

View file

@ -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;