mirror of
https://github.com/ENSL/NS.git
synced 2024-11-10 07:11:38 +00:00
Merge pull request #18 from ENSL/pierow-fixes
revert unintentional changes to commented code
This commit is contained in:
commit
e6ca5321c9
2 changed files with 2 additions and 1 deletions
|
@ -68,7 +68,7 @@
|
|||
// edict->movetype values
|
||||
#define MOVETYPE_NONE 0 // never moves
|
||||
//#define MOVETYPE_ANGLENOCLIP 1
|
||||
//#define MOVETYPE_JUMPHELD 2
|
||||
//#define MOVETYPE_ANGLECLIP 2
|
||||
#define MOVETYPE_WALK 3 // Player only - moving on the ground
|
||||
#define MOVETYPE_STEP 4 // gravity, special edge handling -- monsters use this
|
||||
#define MOVETYPE_FLY 5 // No gravity, but still collides with stuff
|
||||
|
|
|
@ -5341,6 +5341,7 @@ void PM_Jump (void)
|
|||
|
||||
if (pmove->dead || GetHasUpgrade(pmove->iuser4, MASK_ENSNARED))
|
||||
{
|
||||
//pmove->oldbuttons |= IN_JUMP; // don't jump again until released
|
||||
pmove->flags |= FL_JUMPHELD;
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue