Skip to content

Commit

Permalink
- fix for "Return to Phobos (return01.wad) has an ancient bug in map …
Browse files Browse the repository at this point in the history
…E1M2 where the switch to raise the exit bridge doesn't work in versions of Doom past patch 1.2."
  • Loading branch information
coelckers committed Jul 25, 2021
1 parent 9dd304d commit 2fd05fd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions wadsrc/static/zscript/level_compatibility.zs
Expand Up @@ -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;
}
}
}
}

0 comments on commit 2fd05fd

Please sign in to comment.