From aa273a6fbbe215917f258cbec4e4719ba9ba8cc6 Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Mon, 11 Sep 2023 17:24:44 -0700 Subject: [PATCH] Don't pick up rings in spindash charge --- src/p_inter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_inter.c b/src/p_inter.c index 2abf90491..fe914a571 100644 --- a/src/p_inter.c +++ b/src/p_inter.c @@ -572,7 +572,7 @@ void P_TouchSpecialThing(mobj_t *special, mobj_t *toucher, boolean heightcheck) return; // Don't immediately pick up spilled rings - if (special->threshold > 0 || P_PlayerInPain(player)) + if (special->threshold > 0 || P_PlayerInPain(player) || player->spindash) // player->spindash: Otherwise, players can pick up rings that are thrown out of them from invinc spindash penalty return; if (!(P_CanPickupItem(player, 0)))