From 6b0dd547bddb4e56e93aae44b303cd6930b05029 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 10 May 2024 19:10:44 +0200 Subject: [PATCH] fixed rosebush/crystal world interaction --- passable.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/passable.cpp b/passable.cpp index 55615eec..8db7f7df 100644 --- a/passable.cpp +++ b/passable.cpp @@ -169,6 +169,7 @@ EX bool passable(cell *w, cell *from, flagtype flags) { if(airdist(w) < 3) return false; if(againstWind(w,from)) return false; if(isGravityLand(w)) return false; + if(w->wall == waChasm && w->land == laDual) return false; } if(from && strictlyAgainstGravity(w, from, vrevdir, flags)