Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
RingRacers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AAGaming
RingRacers
Commits
91a32362
Commit
91a32362
authored
Feb 19, 2023
by
James R.
Browse files
Options
Downloads
Patches
Plain Diff
Let players bust bustable FOFs again
parent
e1078e4c
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/p_user.c
+8
-1
8 additions, 1 deletion
src/p_user.c
with
8 additions
and
1 deletion
src/p_user.c
+
8
−
1
View file @
91a32362
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment