From 114d5d44d98869a064102715987ac33073bbdc3f Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 4 Dec 2018 21:18:09 +0100 Subject: [PATCH] racing:: icewalls are no longer considered passable --- racing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racing.cpp b/racing.cpp index e7619eb5..17667c3e 100644 --- a/racing.cpp +++ b/racing.cpp @@ -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); } }