- fixed: Heretic's 666 lower floor must be of type LowerToHighest unlike Doom which is LowerToLowest.

SVN r2342 (trunk)
This commit is contained in:
Christoph Oelckers 2010-05-28 21:29:28 +00:00
commit 862d6551bc
4 changed files with 11 additions and 5 deletions

View file

@ -3160,6 +3160,10 @@ DEFINE_ACTION_FUNCTION(AActor, A_BossDeath)
EV_DoFloor (DFloor::floorLowerToLowest, NULL, 666, FRACUNIT, 0, 0, 0, false);
return;
case LEVEL_SPECLOWERFLOORTOHIGHEST:
EV_DoFloor (DFloor::floorLowerToHighest, NULL, 666, FRACUNIT, 0, 0, 0, false);
return;
case LEVEL_SPECOPENDOOR:
EV_DoDoor (DDoor::doorOpen, NULL, NULL, 666, 8*FRACUNIT, 0, 0, 0);
return;