mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 00:42:08 +00:00
- check for NOGRAVITY in 'fall'.
This commit is contained in:
parent
17a8dd5c2e
commit
f0a6c4ecd8
1 changed files with 1 additions and 0 deletions
|
@ -4068,6 +4068,7 @@ void fall(DDukeActor *actor, int playernum)
|
||||||
{
|
{
|
||||||
actor->spr.xoffset = 0;
|
actor->spr.xoffset = 0;
|
||||||
actor->spr.yoffset = 0;
|
actor->spr.yoffset = 0;
|
||||||
|
if (actor->flags3 & SFLAG3_NOGRAVITY) return;
|
||||||
// if(!gotz)
|
// if(!gotz)
|
||||||
{
|
{
|
||||||
double grav;
|
double grav;
|
||||||
|
|
Loading…
Reference in a new issue