mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 15:02:39 +00:00
Compatibility for Hellbound MAP29 (#951)
* Added compatibility for Hellbound MAP29 - Some of the ceilings in the monster closets weren't high enough to allow the cyberdemons to pass, making 100% kills impossible. This is caused by the floors not going down far enough and stopping at a certain height above the next closest floor. * Remove the cyberdemons instead of raising the ceilings.
This commit is contained in:
parent
b68a9ebef5
commit
8bf4522174
1 changed files with 11 additions and 0 deletions
|
@ -1419,6 +1419,17 @@ class LevelCompatibility native play
|
|||
SetLineFlags(2040, Line.ML_REPEAT_SPECIAL);
|
||||
break;
|
||||
}
|
||||
|
||||
case '0E379EEBEB189F294ED122BC60D10A68': // Hellbound MAP29
|
||||
{
|
||||
// Remove the cyberdemons stuck in the closet boxes that cannot teleport.
|
||||
SetThingFlags(2970,0);
|
||||
SetThingFlags(2969,0);
|
||||
SetThingFlags(2968,0);
|
||||
SetThingFlags(2169,0);
|
||||
SetThingFlags(2168,0);
|
||||
SetThingFlags(2167,0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue