From 81e42142af5cada7074d58775a101ff534bf48b7 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 16 Sep 2023 09:25:21 +0200 Subject: [PATCH] - added compatibility handler for Phocas Island 2 MAP01. --- wadsrc/static/zscript/level_compatibility.zs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wadsrc/static/zscript/level_compatibility.zs b/wadsrc/static/zscript/level_compatibility.zs index e88343ec2b..348fc9c632 100644 --- a/wadsrc/static/zscript/level_compatibility.zs +++ b/wadsrc/static/zscript/level_compatibility.zs @@ -2158,6 +2158,12 @@ class LevelCompatibility : LevelPostProcessor SetThingEdNum(59, 3); break; } + + case '3F0965ADCEB2F4A7BF46FADF6DD941B0': // phocas2.wad map01 + { + SetThingEdNum(699, 9044); + break; + } } } }