From 203f7aa40398a03d3cca63f3f79b91a35f5c29dd Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Fri, 15 Jun 2018 03:45:59 -0400 Subject: [PATCH] More poof --- src/p_map.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/p_map.c b/src/p_map.c index fdf65b7ab..5dba8c295 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -1692,6 +1692,7 @@ static boolean PIT_CheckThing(mobj_t *thing) CONS_Printf(M_GetText("%s gave an item to %s.\n"), player_names[thing->player-players], player_names[tmthing->player-players]); tmthing->player->kartstuff[k_itemroulette] = 1; tmthing->player->kartstuff[k_roulettetype] = 1; + P_SpawnMobj(tmthing->x, tmthing->y, tmthing->z, MT_EXPLODE); if (thing->player->kartstuff[k_comebackpoints] >= 3) K_StealBalloon(thing->player, tmthing->player, true); thing->player->kartstuff[k_comebacktimer] = comebacktime; @@ -1707,6 +1708,7 @@ static boolean PIT_CheckThing(mobj_t *thing) CONS_Printf(M_GetText("%s gave an item to %s.\n"), player_names[tmthing->player-players], player_names[thing->player-players]); thing->player->kartstuff[k_itemroulette] = 1; thing->player->kartstuff[k_roulettetype] = 1; + P_SpawnMobj(thing->x, thing->y, thing->z, MT_EXPLODE); if (tmthing->player->kartstuff[k_comebackpoints] >= 3) K_StealBalloon(tmthing->player, thing->player, true); tmthing->player->kartstuff[k_comebacktimer] = comebacktime;