From fd7c1b0d25a4bd0f7db382db0338578fd665bffe Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 29 Apr 2025 10:28:39 +0200 Subject: [PATCH] fixed get_spatial_info for cellUnstable --- flags.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flags.cpp b/flags.cpp index 2184d328..b33d1994 100644 --- a/flags.cpp +++ b/flags.cpp @@ -348,7 +348,7 @@ EX bool highwall(cell *c) { EX spatial_info get_spatial_info(cell *c) { #define F(x) Flag((int) SIDE::x) if(cellUnstable(c)) - return spatial_info{SIDE::INFDEEP, SIDE::INFDEEP, 0}; + return spatial_info{SIDE::FLOOR, SIDE::FLOOR, 0}; if(c->wall == waChasm || c->wall == waInvisibleFloor) return spatial_info{SIDE::INFDEEP, SIDE::INFDEEP, 0}; if(c->wall == waBarrier && wmescher && c->land == laOceanWall)