Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SRB2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
STJr
SRB2
Commits
8c6c76ec
Commit
8c6c76ec
authored
5 months ago
by
Radicalicious
Browse files
Options
Downloads
Patches
Plain Diff
Add MF_NOGRAVITY to trampolines
parent
a67a6ca3
No related branches found
No related tags found
1 merge request
!2594
Add MF_NOGRAVITY to trampolines (fixes #1360)
Pipeline
#6675
passed
5 months ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/info.c
+3
-3
3 additions, 3 deletions
src/info.c
with
3 additions
and
3 deletions
src/info.c
+
3
−
3
View file @
8c6c76ec
...
@@ -8095,7 +8095,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
...
@@ -8095,7 +8095,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
0, // mass
0, // mass
36*FRACUNIT, // damage
36*FRACUNIT, // damage
sfx_None, // activesound
sfx_None, // activesound
MF_SOLID|MF_SPRING, // flags
MF_SOLID|MF_SPRING
|MF_NOGRAVITY
, // flags
S_HORIZYELLOWTRAMPOLINE2 // raisestate
S_HORIZYELLOWTRAMPOLINE2 // raisestate
},
},
...
@@ -8122,7 +8122,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
...
@@ -8122,7 +8122,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
0, // mass
0, // mass
72*FRACUNIT, // damage
72*FRACUNIT, // damage
sfx_None, // activesound
sfx_None, // activesound
MF_SOLID|MF_SPRING, // flags
MF_SOLID|MF_SPRING
|MF_NOGRAVITY
, // flags
S_HORIZREDTRAMPOLINE2 // raisestate
S_HORIZREDTRAMPOLINE2 // raisestate
},
},
...
@@ -8149,7 +8149,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
...
@@ -8149,7 +8149,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
0, // mass
0, // mass
18*FRACUNIT, // damage
18*FRACUNIT, // damage
sfx_None, // activesound
sfx_None, // activesound
MF_SOLID|MF_SPRING, // flags
MF_SOLID|MF_SPRING
|MF_NOGRAVITY
, // flags
S_HORIZBLUETRAMPOLINE2 // raisestate
S_HORIZBLUETRAMPOLINE2 // raisestate
},
},
...
...
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