git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7321 c06c8d41-db1a-0410-9941-cceddc491573
2SRASJI4DLSO7DNQU4YJE3BX6MDUZF2R5STOWQ4BKTOKFKE3FQAAC
SXZZWFWTN4AZHMRSE55MBX5UN2V4A6RKIPREW27SVN6XJP6NT3RQC
HAI4YDKI72OBDT5KMMVCO3DOU765OPWCU7GTRKTALFNSDOI4R2LAC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
// Zombified undead (not including enslaved souls) will not follow // you. if (mons_is_zombified(fmenv) && !mons_enslaved_intact_soul(fmenv)) return (false);
// Zombified undead (not including enslaved souls) will not follow
// you.
if (mons_is_zombified(fmenv) && !mons_enslaved_intact_soul(fmenv))
return (false);
// Non-mindless undead will follow Yredelemnul worshippers, and // orcs will follow Beogh worshippers.
// Non-mindless undead will follow Yredelemnul worshippers, and
// orcs will follow Beogh worshippers.
// Non-zombified undead (including enslaved souls) will follow // Yredelemnul worshippers, and orcs will follow Beogh // worshippers.
// Non-zombified undead (including enslaved souls) will follow
// Yredelemnul worshippers, and orcs will follow Beogh
// worshippers.
if (you.religion == GOD_YREDELEMNUL && mons_intel(fmenv) <= I_PLANT)
if (you.religion == GOD_YREDELEMNUL && mons_is_zombified(fmenv) && !mons_enslaved_intact_soul(fmenv)) {
if (you.religion == GOD_YREDELEMNUL
&& mons_is_zombified(fmenv) && !mons_enslaved_intact_soul(fmenv))
{
}