in bless_follower().
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7018 c06c8d41-db1a-0410-9941-cceddc491573
2NFFQ4TCADDVDWUNH3YXIPLDQ566TPF5WZ2YAZLDM5UEWPVUKNZQC
monsters *slave = choose_random_monster_on_level(0, is_yred_slave, true,
true);
// Choose a random slave in LOS.
monsters *slave = choose_random_nearby_monster(0, is_yred_slave);
if (!slave)
{
// Try again, without the LOS restriction.
slave = choose_random_nearby_monster(0, is_yred_slave, false);
}
if (!slave)
{
// Try *again*, on the entire level.
slave = choose_random_monster_on_level(0, is_yred_slave, false);
}