From 459e814f14296505ef5f474dbd09fd5c521221cd Mon Sep 17 00:00:00 2001 From: staphen Date: Sun, 5 Jan 2025 20:38:55 -0500 Subject: [PATCH] Fix tile incorrectly marked as solid next to crypt stairs down --- Source/levels/gendung.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/levels/gendung.cpp b/Source/levels/gendung.cpp index 830e0e576..f625f7bd9 100644 --- a/Source/levels/gendung.cpp +++ b/Source/levels/gendung.cpp @@ -490,6 +490,7 @@ tl::expected LoadLevelSOLData() break; case DTYPE_CRYPT: RETURN_IF_ERROR(LoadFileInMemWithStatus("nlevels\\l5data\\l5.sol", SOLData)); + SOLData[142] = TileProperties::None; // Tile is incorrectly marked as being solid break; default: return tl::make_unexpected("LoadLevelSOLData");