Skip to content

Commit

Permalink
LAT
Browse files Browse the repository at this point in the history
  • Loading branch information
fickleheart committed Mar 18, 2019
1 parent 7c3925e commit af17038
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/k_kart.c
Original file line number Diff line number Diff line change
Expand Up @@ -2546,14 +2546,14 @@ void K_SpawnKartExplosion(fixed_t x, fixed_t y, fixed_t z, fixed_t radius, INT32
// Spawns the purely visual explosion
void K_SpawnMineExplosion(mobj_t *source, UINT8 color)
{
INT32 i, radius, height;
mobj_t *smoldering = P_SpawnMobj(source->x, source->y, source->z, MT_SMOLDERING);
K_MatchGenericExtraFlags(smoldering, source);

mobj_t *dust;
mobj_t *truc;
INT32 speed, speed2;

INT32 i, radius, height;
mobj_t *smoldering = P_SpawnMobj(source->x, source->y, source->z, MT_SMOLDERING);
K_MatchGenericExtraFlags(smoldering, source);

smoldering->tics = TICRATE*3;
radius = source->radius>>FRACBITS;
height = source->height>>FRACBITS;
Expand Down

0 comments on commit af17038

Please sign in to comment.