From adad028b331781c09c85603bfa7c150f4158ec66 Mon Sep 17 00:00:00 2001 From: Player701 Date: Tue, 8 Jun 2021 13:21:20 +0300 Subject: [PATCH] - Fixed impassable exit line in 007ltsd.wad E4M7 --- wadsrc/static/zscript/level_compatibility.zs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/level_compatibility.zs b/wadsrc/static/zscript/level_compatibility.zs index b8a5bfb10..9f29a6bae 100644 --- a/wadsrc/static/zscript/level_compatibility.zs +++ b/wadsrc/static/zscript/level_compatibility.zs @@ -2120,7 +2120,14 @@ class LevelCompatibility : LevelPostProcessor // fix broken switch to raise the exit bridge SetLineSpecial(1248, Floor_RaiseByValue, 39, 8, 512); break; - } + } + + case '1C35384B22BD805F51B3B2C9D17D62E4': // 007ltsd.wad E4M7 + { + // Fix impassable exit line + SetLineFlags(6842, 0, Line.ML_BLOCKING); + break; + } } } }