Add flies (doomed #112) from the Hexen retail beta

...because it brought back memories of adding Strife support.
- The search function is radically different, but the flying mechanics are
  the same.
This commit is contained in:
Randy Heit 2015-04-02 17:06:04 -05:00
commit d37f9cbcae
8 changed files with 176 additions and 3 deletions

View file

@ -6236,11 +6236,11 @@ void AActor::Crash()
}
}
void AActor::SetIdle()
void AActor::SetIdle(bool nofunction)
{
FState *idle = FindState (NAME_Idle);
if (idle == NULL) idle = SpawnState;
SetState(idle);
SetState(idle, nofunction);
}
int AActor::SpawnHealth()