Skip to content
Snippets Groups Projects
Commit 91a32362 authored by James R.'s avatar James R.
Browse files

Let players bust bustable FOFs again

parent e1078e4c
No related branches found
No related tags found
No related merge requests found
...@@ -1460,7 +1460,14 @@ static boolean P_PlayerCanBust(player_t *player, ffloor_t *rover) ...@@ -1460,7 +1460,14 @@ static boolean P_PlayerCanBust(player_t *player, ffloor_t *rover)
// TODO: Make these act like the Lua SA2 boxes. // TODO: Make these act like the Lua SA2 boxes.
(void)player; (void)player;
(void)rover; (void)rover;
if (!(rover->fofflags & FOF_EXISTS))
return false;
if (!(rover->fofflags & FOF_BUSTUP))
return false; return false;
return true;
} }
static void P_CheckBustableBlocks(player_t *player) static void P_CheckBustableBlocks(player_t *player)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment