Skip to content

Commit

Permalink
Fixed (jHexen): HeXen: Telefog has no Z offset (see here http://sourc…
Browse files Browse the repository at this point in the history
  • Loading branch information
danij committed Jun 5, 2009
1 parent f0c15d8 commit 4ccad05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/jhexen/src/p_telept.c
Expand Up @@ -168,7 +168,7 @@ boolean P_Teleport(mobj_t *mo, float x, float y, angle_t angle,
// Spawn teleport fog at source and destination
if(useFog)
{
fogDelta = FIX2FLT(mo->flags & MF_MISSILE ? 0 : TELEFOGHEIGHT);
fogDelta = (mo->flags & MF_MISSILE ? 0 : TELEFOGHEIGHT);
fog = P_SpawnMobj3f(MT_TFOG, oldpos[VX], oldpos[VY],
oldpos[VZ] + fogDelta, oldAngle + ANG180, 0);

Expand Down

0 comments on commit 4ccad05

Please sign in to comment.