From 182df7bf44eb69e3a0b46df5557645d6223e173a Mon Sep 17 00:00:00 2001 From: James R Date: Thu, 11 Jan 2024 22:02:44 -0800 Subject: [PATCH] Give player 2 seconds of flashing tics when picking up power-ups --- src/p_inter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/p_inter.c b/src/p_inter.c index daa6eab8b..4bc4cf9d8 100644 --- a/src/p_inter.c +++ b/src/p_inter.c @@ -402,6 +402,7 @@ void P_TouchSpecialThing(mobj_t *special, mobj_t *toucher, boolean heightcheck) return; K_GivePowerUp(player, special->threshold, special->movecount); + player->flashing = 2*TICRATE; } else {