Skip to content

Commit

Permalink
- fix a couple issues with sigil.wad:
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
madame-rachelle committed Aug 11, 2019
1 parent cf74118 commit 9c3cdd1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions wadsrc/static/zscript/level_compatibility.zs
Expand Up @@ -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");
}
}
}

Expand Down

0 comments on commit 9c3cdd1

Please sign in to comment.