Skip to content

Commit

Permalink
Fixed Hexen: When gibbed, the Stalker's arm would fly out in a random…
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Mar 24, 2010
1 parent 86ae977 commit 76fa1c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/plugins/jhexen/src/p_enemy.c
Expand Up @@ -2134,8 +2134,8 @@ static void spawnSerpentGib(mobjtype_t type, mobj_t* mo)

if((pmo = P_SpawnMobj3fv((type), pos, P_Random() << 24, MSF_Z_FLOOR)))
{
pmo->mom[MX] = (P_Random() - 128) << 6;
pmo->mom[MY] = (P_Random() - 128) << 6;
pmo->mom[MX] = FIX2FLT((P_Random() - 128) << 6);
pmo->mom[MY] = FIX2FLT((P_Random() - 128) << 6);
pmo->floorClip = 6;
}
}
Expand Down

0 comments on commit 76fa1c9

Please sign in to comment.