From 9c3cdd146206768398e0b20822a412120a71944e Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Sun, 11 Aug 2019 03:22:00 -0400 Subject: [PATCH] - fix a couple issues with sigil.wad: - e5m2: floating skulls disappear on lower skill levels - e5m4: the platform with the baron of hell that led to the invulnerability secret had a missing texture --- wadsrc/static/zscript/level_compatibility.zs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/wadsrc/static/zscript/level_compatibility.zs b/wadsrc/static/zscript/level_compatibility.zs index 5e96b3f47..27787451b 100644 --- a/wadsrc/static/zscript/level_compatibility.zs +++ b/wadsrc/static/zscript/level_compatibility.zs @@ -1356,6 +1356,17 @@ class LevelCompatibility native play // Fix misplaced vertex SetVertex(202, -2, -873); } + case 'E9EB4D16CA7E491E98D61615E4613E70': // sigil.wad e5m2 + { + // Floating Skulls missing in lower difficulties + SetThingSkills(113, 31); + SetThingSkills(114, 31); + } + case 'C43B99F34E5211F9AF24459842852B0D': // sigil.wad e5m4 + { + // Fix missing texture on the Baron-invulnerability-secret platform + SetWallTexture(1926, Line.back, Side.bottom, "MARBLE3"); + } } }