fixed rosebush/crystal world interaction

This commit is contained in:
Zeno Rogue 2024-05-10 19:10:44 +02:00
parent 542e2520c1
commit 6b0dd547bd
1 changed files with 1 additions and 0 deletions

View File

@ -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)