Browse Source

[hellfire] M_StartWalk3 bin exact

pull/876/head
qndel 7 years ago committed by Anders Jenbo
parent
commit
572fa6b92b
  1. 4
      Source/monster.cpp

4
Source/monster.cpp

@ -1378,7 +1378,11 @@ void M_StartWalk3(int i, int xvel, int yvel, int xoff, int yoff, int xadd, int y
int x = mapx + monster[i]._mx;
int y = mapy + monster[i]._my;
#ifdef HELLFIRE
if (!(monster[i]._mFlags & MFLAG_HIDDEN) && monster[i].mlid != 0)
#else
if (monster[i]._uniqtype != 0)
#endif
ChangeLightXY(monster[i].mlid, x, y);
dMonster[monster[i]._mx][monster[i]._my] = -(i + 1);

Loading…
Cancel
Save