Browse Source

[hellfire] M_DoStand bin exact

pull/876/head
qndel 7 years ago committed by Anders Jenbo
parent
commit
65eaf258ab
  1. 8
      Source/monster.cpp

8
Source/monster.cpp

@ -1925,9 +1925,17 @@ int M_DoStand(int i)
MonsterStruct *Monst;
if ((DWORD)i >= MAXMONSTERS)
#ifdef HELLFIRE
return 0;
#else
app_fatal("M_DoStand: Invalid monster %d", i);
#endif
if (monster[i].MType == NULL)
#ifdef HELLFIRE
return 0;
#else
app_fatal("M_DoStand: Monster %d \"%s\" MType NULL", i, monster[i].mName);
#endif
Monst = &monster[i];
if (Monst->MType->mtype == MT_GOLEM)

Loading…
Cancel
Save