From 86509e9172baeb702ca8343120791fefdf663bfa Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Mon, 26 Oct 2009 19:11:43 +0000 Subject: * Tutorial text no longer prints how to use a buildable if you aren't near a usable buildable * Tutorial text explains low-stamina states --- src/game/bg_pmove.c | 2 +- src/game/tremulous.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'src/game') 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 -- cgit