Skip to content

Commit

Permalink
- only return at the end of the MAP07SPECIAL block.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Oct 24, 2020
1 parent 838733a commit eab3289
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/playsim/p_enemy.cpp
Expand Up @@ -3160,14 +3160,13 @@ void A_BossDeath(AActor *self)
if (type == NAME_Fatso || samereplacement)
{
Level->EV_DoFloor (DFloor::floorLowerToLowest, NULL, 666, 1., 0, -1, 0, false);
return;
}

if (type == NAME_Arachnotron || samereplacement)
{
Level->EV_DoFloor (DFloor::floorRaiseByTexture, NULL, 667, 1., 0, -1, 0, false);
return;
}
return;
}
else
{
Expand Down

0 comments on commit eab3289

Please sign in to comment.