ignoresSmell using flags

This commit is contained in:
Zeno Rogue 2019-03-23 16:38:34 +01:00
parent a3cea92004
commit ad5884e29f
1 changed files with 1 additions and 3 deletions

View File

@ -327,9 +327,7 @@ bool checkOrb2(eMonster m1, eItem orb) {
}
bool ignoresSmell(eMonster m) {
return
m == moHexSnake || isIvy(m) || isMutantIvy(m) || isGhostMover(m) || isSlimeMover(m) ||
m == moRoseLady || checkOrb(m, itOrbBeauty) || checkOrb(m, itOrbAether) || checkOrb(m, itOrbShield);
return ignoresSmellType(m) || checkOrb(m, itOrbBeauty) || checkOrb(m, itOrbAether) || checkOrb(m, itOrbShield);
}
bool highwall(cell *c) {