- fix for "Return to Phobos (return01.wad) has an ancient bug in map E1M2 where the switch to raise the exit bridge doesn't work in versions of Doom past patch 1.2."

This commit is contained in:
Christoph Oelckers 2021-05-25 10:12:51 +02:00 committed by Emile Belanger
parent 2a6ba20bbf
commit eb0dc3f924
1 changed files with 7 additions and 0 deletions

View File

@ -2113,6 +2113,13 @@ class LevelCompatibility : LevelPostProcessor
SetLineFlags(1461, Line.ML_REPEAT_SPECIAL); SetLineFlags(1461, Line.ML_REPEAT_SPECIAL);
SetLineFlags(1468, Line.ML_REPEAT_SPECIAL); SetLineFlags(1468, Line.ML_REPEAT_SPECIAL);
} }
case 'E0D747B9EE58A0CB74B9AD54423AC15C': // return01.wad e1m2
{
// fix broken switch to raise the exit bridge
SetLineSpecial(1248, Floor_RaiseByValue, 39, 8, 512);
break;
}
} }
} }
} }