diff options
author | Roman Tetelman <kevlarman@gmail.com> | 2009-10-03 12:20:02 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:52 +0000 |
commit | 331a87a0574a49acdd820fe5985f27522be340e3 (patch) | |
tree | cef286703f8172900582a5268f1410e7ef5f154b /src/game | |
parent | 3f6fd66c02b74d20613a10f37129292328cf28e9 (diff) |
* fix for stamina sometimes being drained when sprinting and walking at
the same time (fixes #8)
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/bg_pmove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c index 6769fa02..b16f11c4 100644 --- a/src/game/bg_pmove.c +++ b/src/game/bg_pmove.c @@ -919,7 +919,7 @@ static qboolean PM_CheckDodge( void ) // Reasons to stop a sprint if( pm->cmd.forwardmove <= 0 || pm->cmd.upmove < 0 || - pm->ps->pm_type != PM_NORMAL ) + pm->ps->pm_type != PM_NORMAL || pm->cmd.buttons & BUTTON_WALKING ) pm->ps->stats[ STAT_STATE ] &= ~SS_SPEEDBOOST; // Reasons why we can't start a dodge or sprint |