diff options
author | Mikko Tiusanen <ams@daug.net> | 2015-02-14 15:19:07 +0200 |
---|---|---|
committer | Mikko Tiusanen <ams@daug.net> | 2015-02-14 15:28:01 +0200 |
commit | 839cabd68286d2bc56b04c518f184f38369c3853 (patch) | |
tree | 1b99bb9992385d0dd0d2772b36eda1c857e6c854 /src/game/g_admin.c | |
parent | d5a1c55d37e961e95f8439249b31dca7eec81e2d (diff) |
Various gameplay balance changes and minor bug fixes, code organization.
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.
Diffstat (limited to 'src/game/g_admin.c')
-rw-r--r-- | src/game/g_admin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/g_admin.c b/src/game/g_admin.c index 3b1566c..6c04029 100644 --- a/src/game/g_admin.c +++ b/src/game/g_admin.c @@ -2762,7 +2762,8 @@ qboolean G_admin_listplayers( gentity_t *ent ) } else { - l = G_admin_level( 2 ); // Display 'Verified Player' level + // Display level matching admin's score instead of the real/fixed level for incognito players. + l = G_admin_find_level_for_score( p->pers.admin->score ); } } |