mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-11-17 14:17:10 +00:00
intra:: first version
This commit is contained in:
2
cell.cpp
2
cell.cpp
@@ -1450,7 +1450,7 @@ EX int valence() {
|
||||
/** portalspaces are not defined outside of a boundary */
|
||||
EX bool is_boundary(cell *c) {
|
||||
if(c == &out_of_bounds) return true;
|
||||
return (cgflags & qPORTALSPACE) && isWall(c->wall);
|
||||
return ((cgflags & qPORTALSPACE) || intra::in) && isWall(c->wall);
|
||||
}
|
||||
|
||||
/** compute the distlimit for a tessellation automatically */
|
||||
|
||||
Reference in New Issue
Block a user