diff options
author | Roman Tetelman <kevlarman@gmail.com> | 2009-10-03 13:05:56 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:28 +0000 |
commit | 05c82406cb6782b4e6f91609d1f031896ec83ca5 (patch) | |
tree | 89a415f6879fb49c306f6452042848ecfd77f292 /src/game/tremulous.h | |
parent | cdc4e962f407596fe76b615d9e0f19f15a7d6c0e (diff) |
* bring back camper credits
- they are now awarded regardless of deaths
- use a cvar (g_freeKillPeriod) instead of a #define as the interval
Diffstat (limited to 'src/game/tremulous.h')
-rw-r--r-- | src/game/tremulous.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/tremulous.h b/src/game/tremulous.h index 358040a5..8f66ac24 100644 --- a/src/game/tremulous.h +++ b/src/game/tremulous.h @@ -657,9 +657,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #define MAX_FALL_DISTANCE 120.0f //the fall distance at which maximum damage is dealt #define AVG_FALL_DISTANCE ((MIN_FALL_DISTANCE+MAX_FALL_DISTANCE)/2.0f) -#define FREEKILL_PERIOD 120000 //msec -#define FREEKILL_ALIEN 0 -#define FREEKILL_HUMAN 0 +#define DEFAULT_FREEKILL_PERIOD "120000" //msec +#define FREEKILL_ALIEN ALIEN_CREDITS_PER_KILL +#define FREEKILL_HUMAN LEVEL0_VALUE #define DEFAULT_ALIEN_BUILDPOINTS "150" #define DEFAULT_ALIEN_QUEUE_TIME "12000" |