From 3a54b10697c513fade2e77a2a1f619ba71f113f8 Mon Sep 17 00:00:00 2001 From: "Colton G. Rushton" Date: Thu, 10 Oct 2019 07:35:06 -0300 Subject: [PATCH] Remove Illusory E3M7 key door changes Removed the red key door compat patch for Illusions of Home E3M7 because a switch (the computer panel, rather) already opened that door as it was, therefore the original change was unnecessary. --- wadsrc/static/zscript/level_compatibility.zs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/wadsrc/static/zscript/level_compatibility.zs b/wadsrc/static/zscript/level_compatibility.zs index 819303c86..08985872d 100644 --- a/wadsrc/static/zscript/level_compatibility.zs +++ b/wadsrc/static/zscript/level_compatibility.zs @@ -1387,13 +1387,9 @@ class LevelCompatibility native play } case '0EF86635676FD512CE0E962040125553': // Illusions of Home e3m7 { - // Fix red key and red key area door - // Also fix missing texture in red key area + // Fix red key and missing texture in red key area SetThingFlags(247, 2016); SetThingSkills(247, 31); - SetLineActivation(49, SPAC_Use); - SetLineSpecial(49, Door_Raise, 0, 16, 150, 0); - SetLineFlags(49, Line.ML_REPEAT_SPECIAL); SetWallTexture(608, Line.back, Side.bottom, "GRAY5"); break; }