From c7299274e1595a37067fffaf82782c198d10422d Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Thu, 2 Nov 2023 22:44:34 -0700 Subject: [PATCH] Start with 20 rings if using attack start --- src/g_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_game.c b/src/g_game.c index e65baacd1..dd53e91e5 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -2145,7 +2145,7 @@ void G_PlayerReborn(INT32 player, boolean betweenmaps) { rings = 0; } - else if (modeattacking & ATTACKING_SPB) + else if (G_TimeAttackStart()) { rings = 20; }