From 869ff8d7fa6d2d3b8a3f3f41aac982f354d4d912 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 7b7cf835f..fc86a2c68 100644 --- a/Source/levels/gendung.cpp +++ b/Source/levels/gendung.cpp @@ -469,6 +469,7 @@ void LoadLevelSOLData() break; case DTYPE_CRYPT: LoadFileInMem("nlevels\\l5data\\l5.sol", SOLData); + SOLData[142] = TileProperties::None; // Tile is incorrectly marked as being solid break; default: app_fatal("LoadLevelSOLData");