1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-18 23:10:26 +00:00

conegraph fixup

This commit is contained in:
Zeno Rogue 2019-03-23 16:29:02 +01:00
parent d97baabe97
commit 314b31e4f0

View File

@ -353,8 +353,7 @@ int chasmgraph(cell *c) {
}
bool conegraph(cell *c) {
return wmescher && wmspatial && conegraphtype(c);
(c->wall == waDune || c->wall == waBigTree || c->wall == waSmallTree || c->wall == waCTree || (c->wall == waBarrier && c->land == laOceanWall));
return wmescher && wmspatial && (conegraphtype(c) || (c->wall == waBarrier && c->land == laOceanWall));
}
bool hornStuns(cell *c) {