From 78a893666f68a1be8d3092e4a180b1df437d8862 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Thu, 2 Mar 2023 16:17:29 -0500 Subject: [PATCH] Podium bots don't drop rings if they bump --- src/k_collide.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/k_collide.c b/src/k_collide.c index ee773dfa3..bf813e410 100644 --- a/src/k_collide.c +++ b/src/k_collide.c @@ -811,6 +811,12 @@ boolean K_PvPTouchDamage(mobj_t *t1, mobj_t *t2) boolean stungT1 = false; boolean stungT2 = false; + if (K_PodiumSequence() == true) + { + // Always regular bumps, no ring toss. + return false; + } + // Clash instead of damage if both parties have any of these conditions t1Condition = (K_IsBigger(t1, t2) == true) || (t1->player->invincibilitytimer > 0)