mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-23 04:22:34 +00:00
- only return at the end of the MAP07SPECIAL block.
This commit is contained in:
parent
838733af4a
commit
eab3289043
1 changed files with 1 additions and 2 deletions
|
@ -3160,14 +3160,13 @@ void A_BossDeath(AActor *self)
|
||||||
if (type == NAME_Fatso || samereplacement)
|
if (type == NAME_Fatso || samereplacement)
|
||||||
{
|
{
|
||||||
Level->EV_DoFloor (DFloor::floorLowerToLowest, NULL, 666, 1., 0, -1, 0, false);
|
Level->EV_DoFloor (DFloor::floorLowerToLowest, NULL, 666, 1., 0, -1, 0, false);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (type == NAME_Arachnotron || samereplacement)
|
if (type == NAME_Arachnotron || samereplacement)
|
||||||
{
|
{
|
||||||
Level->EV_DoFloor (DFloor::floorRaiseByTexture, NULL, 667, 1., 0, -1, 0, false);
|
Level->EV_DoFloor (DFloor::floorRaiseByTexture, NULL, 667, 1., 0, -1, 0, false);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue