git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7922 c06c8d41-db1a-0410-9941-cceddc491573
6MOU2VCU4VLEKLRXZZFMDV7SLUODL26ZXUMQ5RC7N35CU2ABNKQAC
// Monsters that are smart enough to use stairs can push past monsters
// that are too stupid to use stairs (e.g. zombies).
if (m1->can_use_stairs() && !m2->can_use_stairs())
// If they're the same holiness, monsters smart enough to use stairs can
// push past monsters too stupid to use stairs (so that e.g. non-zombified
// undead can push past zombified undead).
if (m1->holiness() == m2->holiness() && m1->can_use_stairs()
&& !m2->can_use_stairs())
{