From 4670819ec86b10389681a29ba170ae0711271f1b Mon Sep 17 00:00:00 2001 From: Player701 Date: Fri, 9 Oct 2020 17:58:06 +0300 Subject: [PATCH] - Fixed a lift in Double Impact E1M7 that could not be used more than twice from the lower area. --- wadsrc/static/zscript/level_compatibility.zs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wadsrc/static/zscript/level_compatibility.zs b/wadsrc/static/zscript/level_compatibility.zs index 857ae31894..57dcf5d0f4 100644 --- a/wadsrc/static/zscript/level_compatibility.zs +++ b/wadsrc/static/zscript/level_compatibility.zs @@ -2107,6 +2107,12 @@ class LevelCompatibility : LevelPostProcessor SetSectorSpecial (97, 0); break; } + + case 'A50AC05CCE4F07413A0C4883C5E24215': // dbimpact.wad e1m7 + { + SetLineFlags(1461, Line.ML_REPEAT_SPECIAL); + SetLineFlags(1468, Line.ML_REPEAT_SPECIAL); + } } } }