From 2140e964589e6da4ad8f88ad856ccd0df955ae61 Mon Sep 17 00:00:00 2001 From: Mikko Tiusanen Date: Sat, 14 Feb 2015 15:19:07 +0200 Subject: Increased goon pounce delay a little bit. Incognito players as players of level matching their score. Adjusted the hp, build time and bp of various buildings. Alien hives now track movement a bit faster. Added cvars to limit colony and refinery bp max effects. Colonies and refineries can now prevent enemy building within their radius. Reduced flamer and lightning gun damage and slowed down rockets. Increased Adv. mara zap rate and adv. goon barb regen. Increased hummel barbs damage and reduced their repeat rate a little bit. --- src/game/g_active.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/game/g_active.c') diff --git a/src/game/g_active.c b/src/game/g_active.c index 2fdb514..6021a65 100644 --- a/src/game/g_active.c +++ b/src/game/g_active.c @@ -1847,11 +1847,11 @@ void ClientThink_real( gentity_t *ent ) continue; } - if( modifier < 4.6f && boost->s.eType == ET_BUILDABLE && + if( modifier < COCOON_REGEN_MOD && boost->s.eType == ET_BUILDABLE && boost->s.modelindex == BA_A_COCOON && boost->spawned && boost->health > 0 && boost->powered ) { - modifier = 4.6f; + modifier = COCOON_REGEN_MOD; continue; } -- cgit