Browse Source

[hellfire] MAI_Zhar

pull/977/head
Anders Jenbo 5 years ago
parent
commit
9d3bcb0de3
  1. 4
      Source/monster.cpp

4
Source/monster.cpp

@ -5098,7 +5098,11 @@ void MAI_Zhar(int i)
MonsterStruct *Monst;
if ((DWORD)i >= MAXMONSTERS)
#ifdef HELLFIRE
return;
#else
app_fatal("MAI_Zhar: Invalid monster %d", i);
#endif
Monst = &monster[i];
if (monster[i]._mmode != MM_STAND) {

Loading…
Cancel
Save