1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-17 06:07:12 +00:00

Illusions ignore plates (does not change much?)

This commit is contained in:
Zeno Rogue
2018-02-12 00:06:11 +01:00
parent c8b3c7aaf0
commit bcf5e984ad
3 changed files with 4 additions and 5 deletions

View File

@@ -470,7 +470,7 @@ bool survivesChasm(eMonster m) {
}
bool ignoresPlates(eMonster m) {
return m == moMouse || isFlying(m);
return m == moMouse || isFlying(m) || m == moIllusion;
}
bool itemBurns(eItem it) {
@@ -649,8 +649,7 @@ bool survivesThorns(eMonster m) {
}
bool survivesFall(eMonster m) {
return isBird(m) || m == moAirElemental || m == moSkeleton || isDragon(m) || m == moShadow ||
isGhost(m);
return isBird(m) || m == moAirElemental || m == moSkeleton || isDragon(m) || m == moShadow || isGhost(m);
}
bool isThorny(eWall w) { return w == waRose; }