Do not let Super Flicky target spectators

This commit is contained in:
James R 2023-12-03 15:35:41 -08:00
parent 4588943352
commit df9b4fbe12

View file

@ -563,6 +563,11 @@ void Controller::search()
continue;
}
if (player->spectator)
{
continue;
}
// Do not retarget existing target or owner.
if (mobj == chasing() || mobj == source())
{