From bc8046ac1ab7f1f07bf0c78c60a56511698e68f6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 31 May 2022 00:02:15 +0200 Subject: [PATCH] - fix bad MP start spot in 1024.wad, MAP05 --- wadsrc/static/zscript/level_compatibility.zs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wadsrc/static/zscript/level_compatibility.zs b/wadsrc/static/zscript/level_compatibility.zs index 58bc4a091..879b8a5fc 100644 --- a/wadsrc/static/zscript/level_compatibility.zs +++ b/wadsrc/static/zscript/level_compatibility.zs @@ -2143,6 +2143,13 @@ class LevelCompatibility : LevelPostProcessor SetLineFlags(6842, 0, Line.ML_BLOCKING); break; } + + case '50E394239FF64264950D11883E933553': // 1024.wad map05 + { + // Change duplicate player 2 start to player 3 start + SetThingEdNum(59, 3); + break; + } } } }