diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-26 19:11:43 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:08 +0000 |
commit | 86509e9172baeb702ca8343120791fefdf663bfa (patch) | |
tree | d89f28ae5b172940b613e9a360f13759a4bf9d1b /src/game | |
parent | 54161abc42b98c89604eeea5bf960eb48407f6b8 (diff) |
* Tutorial text no longer prints how to use a buildable if you aren't near a usable buildable
* Tutorial text explains low-stamina states
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/bg_pmove.c | 2 | ||||
-rw-r--r-- | src/game/tremulous.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c index 5d51c34a..80d33066 100644 --- a/src/game/bg_pmove.c +++ b/src/game/bg_pmove.c @@ -431,7 +431,7 @@ static float PM_CmdScale( usercmd_t *cmd ) cmd->upmove = 0; //slow down once stamina depletes - if( pm->ps->stats[ STAT_STAMINA ] <= -500 ) + if( pm->ps->stats[ STAT_STAMINA ] <= STAMINA_SLOW_LEVEL ) modifier *= (float)( pm->ps->stats[ STAT_STAMINA ] + 1000 ) / 500.0f; if( pm->ps->stats[ STAT_STATE ] & SS_CREEPSLOWED ) diff --git a/src/game/tremulous.h b/src/game/tremulous.h index 7267355b..0445a8d3 100644 --- a/src/game/tremulous.h +++ b/src/game/tremulous.h @@ -639,6 +639,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #define STAMINA_JUMP_TAKE 250 #define STAMINA_DODGE_TAKE 250 #define STAMINA_BREATHING_LEVEL 0 +#define STAMINA_SLOW_LEVEL -500 +#define STAMINA_BLACKOUT_LEVEL -800 #define HUMAN_SPAWN_REPEAT_TIME 10000 #define HUMAN_REGEN_DAMAGE_TIME 2000 //msec since damage before dcc repairs |