mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
Level compatibility additions for Scythe 2 and Hell Revealed
This commit is contained in:
parent
f5d2063613
commit
7de1b796ba
1 changed files with 26 additions and 0 deletions
|
@ -1397,6 +1397,32 @@ class LevelCompatibility native play
|
|||
SetWallTexture(608, Line.back, Side.bottom, "GRAY5");
|
||||
break;
|
||||
}
|
||||
|
||||
case '1C795660D2BA9FC93DA584C593FD1DA3': // Scythe 2 MAP17
|
||||
{
|
||||
// Texture displays incorrectly in hardware renderer
|
||||
SetVertex(2687, -4540, -1083); //Fixes bug with minimal effect on geometry
|
||||
break;
|
||||
}
|
||||
case '7483D7BDB8375358F12D146E1D63A85C': // Scythe 2 MAP24
|
||||
{
|
||||
// Missing texture
|
||||
TextureID adel_q62 = TexMan.CheckForTexture("ADEL_Q62", TexMan.Type_Wall);
|
||||
SetWallTextureID(7775, Line.front, Side.bottom, adel_q62);
|
||||
break;
|
||||
}
|
||||
|
||||
case '16E621E46F87418F6F8DB71D68433AE0': // Hell Revealed MAP23
|
||||
{
|
||||
// Arachnotrons near beginning sometimes don't spawn if imps block
|
||||
// their one-time teleport. Make these teleports repeatable to ensure
|
||||
// maxkills are always possible.
|
||||
SetLineFlags(2036, Line.ML_REPEAT_SPECIAL);
|
||||
SetLineFlags(2038, Line.ML_REPEAT_SPECIAL);
|
||||
SetLineFlags(2039, Line.ML_REPEAT_SPECIAL);
|
||||
SetLineFlags(2040, Line.ML_REPEAT_SPECIAL);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue