Navigation Menu

Skip to content

Commit

Permalink
Fixed (jHeretic): "Heretic: No teleporter sparkles" (see here http://…
Browse files Browse the repository at this point in the history
  • Loading branch information
danij committed Jun 5, 2009
1 parent a814226 commit f0c15d8
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions doomsday/plugins/jheretic/src/p_enemy.c
Expand Up @@ -2171,10 +2171,13 @@ void C_DECL A_ESound(mobj_t *mo)
S_StartSound(sound, mo);
}

void C_DECL A_SpawnTeleGlitter(mobj_t *actor)
void C_DECL A_SpawnTeleGlitter(mobj_t* actor)
{
mobj_t* mo;
return;

if(!actor)
return;

mo = P_SpawnMobj3f(MT_TELEGLITTER,
actor->pos[VX] + ((P_Random() & 31) - 16),
actor->pos[VY] + ((P_Random() & 31) - 16),
Expand All @@ -2185,10 +2188,13 @@ return;
mo->special3 = 1000;
}

void C_DECL A_SpawnTeleGlitter2(mobj_t *actor)
void C_DECL A_SpawnTeleGlitter2(mobj_t* actor)
{
mobj_t* mo;
return;

if(!actor)
return;

mo = P_SpawnMobj3f(MT_TELEGLITTER2,
actor->pos[VX] + ((P_Random() & 31) - 16),
actor->pos[VY] + ((P_Random() & 31) - 16),
Expand Down

0 comments on commit f0c15d8

Please sign in to comment.