1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-17 19:48:06 +00:00
This commit is contained in:
Zeno Rogue
2018-06-12 22:40:06 +02:00
parent 520e5e5dbb
commit 50eaba3efd
4 changed files with 10 additions and 13 deletions

View File

@@ -213,10 +213,6 @@ bool isDemon(cell *c) {
return isDemon(c->monst);
}
bool isWormHead(eMonster m) {
return m == moWorm || m == moTentacle || m == moHexSnake || m == moDragonHead;
}
bool isWorm(eMonster m) {
return m == moWorm || m == moWormtail || m == moWormwait ||
m == moTentacle || m == moTentacletail || m == moTentaclewait ||
@@ -651,10 +647,6 @@ bool survivesFire(eMonster m) {
isDragon(m) || m == moShadow;
}
/* bool survivesMine(eMonster m) {
return ignoresPlates(m) || isFlying(m);
} */
bool survivesWall(eMonster m) {
return isGhost(m);
}