Merge branch 'fix-super-flicky-targeting' into 'master'

Do not let Super Flicky target spectators

Closes #785

See merge request KartKrew/Kart!1672
This commit is contained in:
James R. 2023-12-08 03:28:06 +00:00
commit eca0310828

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())
{