mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-10 07:11:48 +00:00
Mantis: 982
o New Balance Var kHiveSightRange o Initial value of 3000 ( used to be 1500 ) git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@114 67975925-1194-0748-b3d5-c16f83f1a3a1
This commit is contained in:
parent
c5080559e6
commit
80944bf2fa
2 changed files with 4 additions and 1 deletions
|
@ -160,6 +160,7 @@
|
|||
#define kHiveHealRadius 500
|
||||
#define kHiveHealth 7000
|
||||
#define kHiveRegenerationAmount 2
|
||||
#define kHiveSightRange 3000
|
||||
#define kInfantryPortalBuildTime 10
|
||||
#define kInfantryPortalCost 20
|
||||
#define kInfantryPortalHealth 2500
|
||||
|
|
|
@ -6007,7 +6007,9 @@ void AvHPlayer::InternalAlienUpgradesRegenerationThink()
|
|||
|
||||
void AvHPlayer::ProcessEntityBlip(CBaseEntity* inEntity)
|
||||
{
|
||||
const float kAlienEnemyBlipRange = 1500;
|
||||
// puzl: 982
|
||||
// Make alien hivesight range a balance var
|
||||
const float kAlienFriendlyBlipRange = BALANCE_VAR(kHiveSightRange);
|
||||
|
||||
// Is player alien?
|
||||
bool theIsAlien = this->GetIsAlien(true);
|
||||
|
|
Loading…
Reference in a new issue