mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-24 15:00:14 +00:00
racing:: icewalls are no longer considered passable
This commit is contained in:
parent
f0be09407e
commit
114d5d44d9
@ -441,7 +441,7 @@ void generate_track() {
|
|||||||
cell *c = cl.lst[i];
|
cell *c = cl.lst[i];
|
||||||
forCellEx(c2, c) {
|
forCellEx(c2, c) {
|
||||||
if(among(c2->wall, waCloud, waMirror)) goal = true;
|
if(among(c2->wall, waCloud, waMirror)) goal = true;
|
||||||
if(c2->wall == waIcewall || passable(c2, c, P_ISPLAYER))
|
if(passable(c2, c, P_ISPLAYER))
|
||||||
cl.add(c2);
|
cl.add(c2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user