Browse Source

[hellfire] CanTalkToMonst bin exact

pull/876/head
qndel 6 years ago committed by Anders Jenbo
parent
commit
f20c3df0c3
  1. 4
      Source/monster.cpp

4
Source/monster.cpp

@ -5917,7 +5917,11 @@ void SpawnGolum(int i, int x, int y, int mi)
BOOL CanTalkToMonst(int m)
{
if ((DWORD)m >= MAXMONSTERS) {
#ifdef HELLFIRE
return FALSE;
#else
app_fatal("CanTalkToMonst: Invalid monster %d", m);
#endif
}
if (monster[m]._mgoal == MGOAL_INQUIRING) {

Loading…
Cancel
Save