racing:: icewalls are no longer considered passable

This commit is contained in:
Zeno Rogue 2018-12-04 21:18:09 +01:00
parent f0be09407e
commit 114d5d44d9
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ void generate_track() {
cell *c = cl.lst[i];
forCellEx(c2, c) {
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);
}
}