From f66b2df41e3f93be444b1ddce4fdfa170ba90ebe Mon Sep 17 00:00:00 2001 From: NepDisk Date: Fri, 20 Mar 2026 19:05:09 -0400 Subject: [PATCH] Let Bubbleboost steal bumpers also --- src/k_collide.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/k_collide.c b/src/k_collide.c index ea763e9d1..e3f601cae 100644 --- a/src/k_collide.c +++ b/src/k_collide.c @@ -1117,14 +1117,16 @@ boolean K_PvPTouchDamage(mobj_t *t1, mobj_t *t2) return true; } - // Battle Mode Sneaker damage + // Battle Mode Sneaker and Bubble damage // (Pogo Spring damage is handled in head-stomping code) if (gametypes[gametype]->rules & GTR_BUMPERS) { - t1Condition = ((t1->player->sneakertimer > 0) + t1Condition = (((t1->player->sneakertimer > 0) + || (t1->player->bubbleboost > 0)) && !P_PlayerInPain(t1->player) && (t1->player->flashing == 0)); - t2Condition = ((t2->player->sneakertimer > 0) + t2Condition = (((t2->player->sneakertimer > 0) + || (t2->player->bubbleboost > 0)) && !P_PlayerInPain(t2->player) && (t2->player->flashing == 0));