1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-20 23:54:49 +00:00

Remove unused function isFriendlyGhost

It looks like nothing in the repo has ever called this.
This commit is contained in:
Joseph C. Sible
2025-09-28 15:05:55 -04:00
parent 8b7e82b460
commit 09895de0d0

View File

@@ -262,10 +262,6 @@ EX bool haveRangedOrb() {
items[itOrbMorph] || items[itOrbPhasing]; items[itOrbMorph] || items[itOrbPhasing];
} }
EX bool isFriendlyGhost(eMonster m) {
return m == moFriendlyGhost || (markEmpathy(itOrbAether) && isFriendly(m));
}
EX bool isGhostAether(eMonster m) { EX bool isGhostAether(eMonster m) {
return isGhost(m) || checkOrb(m, itOrbAether); return isGhost(m) || checkOrb(m, itOrbAether);
} }