- 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
parent 5f02b92cd0
commit dfe6a09b8c

View file

@ -2113,6 +2113,13 @@ class LevelCompatibility : LevelPostProcessor
SetLineFlags(1461, 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;
}
}
}
}