From 91ea22e85ab50a04ad3470c19c1b7ad60de778b8 Mon Sep 17 00:00:00 2001 From: Player701 Date: Tue, 27 Nov 2018 15:22:58 +0300 Subject: [PATCH] - Fixed textures on the two switches that rise from the floor in the eastern area of TNT MAP31 --- wadsrc/static/zscript/level_compatibility.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wadsrc/static/zscript/level_compatibility.txt b/wadsrc/static/zscript/level_compatibility.txt index 90ecf8c96..c5915427a 100644 --- a/wadsrc/static/zscript/level_compatibility.txt +++ b/wadsrc/static/zscript/level_compatibility.txt @@ -179,6 +179,11 @@ class LevelCompatibility play { // The famous missing yellow key... SetThingFlags(470, 2016); + // Fix textures on the two switches that rise from the floor in the eastern area + for (int i = 0; i < 8; i++) + { + SetLineFlags(1676 + i, 0, Line.ML_DONTPEGBOTTOM); + } break; }