From d049b3b3eb3fa611edbff036671ea5158e9aa8b3 Mon Sep 17 00:00:00 2001 From: Player701 Date: Thu, 20 Dec 2018 20:27:10 +0300 Subject: [PATCH] - Fixed the position of the soul sphere within one of the secret areas (sector 324) of Alien Vendetta MAP28. --- wadsrc/static/zscript/level_compatibility.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wadsrc/static/zscript/level_compatibility.txt b/wadsrc/static/zscript/level_compatibility.txt index 3ac3473fd7..170b98ed57 100644 --- a/wadsrc/static/zscript/level_compatibility.txt +++ b/wadsrc/static/zscript/level_compatibility.txt @@ -1155,6 +1155,13 @@ class LevelCompatibility play SetLineFlags(4884, Line.ML_REPEAT_SPECIAL); break; } + + case '7FB847B522DE80D0B2A217E1EF8D1A15': // av.wad map28 + { + // Fix the soulsphere in a secret area (sector 324) + // so that it doesn't end up in an unreachable position. + SetThingXY(516, -934, 48); + } } }