mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
Fix missing enemies in HTP-RAW.WAD MAP22
Make 100% kills possible on MAP22 of Hell to Pay
This commit is contained in:
parent
e223a25863
commit
22f8c26917
1 changed files with 14 additions and 0 deletions
|
@ -651,6 +651,20 @@ class LevelCompatibility play
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case '7837B5334A277F107515D649BCEFB682': // Hell to Pay MAP22
|
||||||
|
{
|
||||||
|
// Four enemies (six if multiplayer) never spawn in the map,
|
||||||
|
// so the lines closest to them should teleport them instead.
|
||||||
|
SetLineSpecial(1835, Teleport, 0, 40);
|
||||||
|
SetLineActivation(1835, SPAC_MCross);
|
||||||
|
SetLineFlags(1835, Line.ML_REPEAT_SPECIAL);
|
||||||
|
|
||||||
|
SetLineSpecial(1847, Teleport, 0, 40);
|
||||||
|
SetLineActivation(1847, SPAC_MCross);
|
||||||
|
SetLineFlags(1847, Line.ML_REPEAT_SPECIAL);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case '1A1AB6415851B9F17715A0C36412752E': // Hell to Pay MAP24
|
case '1A1AB6415851B9F17715A0C36412752E': // Hell to Pay MAP24
|
||||||
{
|
{
|
||||||
// Remove Chaingunner far below the map, making 100% kills
|
// Remove Chaingunner far below the map, making 100% kills
|
||||||
|
|
Loading…
Reference in a new issue