diff --git a/src/p_setup.c b/src/p_setup.c index a6642f3eb..93f079fea 100644 --- a/src/p_setup.c +++ b/src/p_setup.c @@ -5893,7 +5893,7 @@ static void P_ConvertBinarySectorTypes(void) CONS_Alert(CONS_WARNING, "Sneaker Panel special is deprecated. Use the TERRAIN effect!\n"); break; case 7: //Destroy items - sectors[i].specialflags |= SSF_DESTROYITEMS; + sectors[i].specialflags |= SSF_DELETEITEMS; break; case 8: //Zoom tube start sectors[i].specialflags |= SSF_ZOOMTUBESTART; diff --git a/src/p_spec.c b/src/p_spec.c index 7b09e8bb4..835091c07 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -4461,7 +4461,7 @@ static void P_ProcessExitSector(player_t *player, mtag_t sectag) #endif // Exit (for FOF exits; others are handled in P_PlayerThink in p_user.c) - P_DoPlayerFinish(player); + P_DoPlayerExit(player); P_SetupSignExit(player);