From fc5c159d63d98bd212cfcec05693f69d096cd57c Mon Sep 17 00:00:00 2001 From: XP-Cagey Date: Fri, 8 Apr 2005 12:38:47 +0000 Subject: [PATCH] Fixed Mantis #1003 - hive was using default health amount of 100 HP instead of amount specified in Balance.txt git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@42 67975925-1194-0748-b3d5-c16f83f1a3a1 --- main/source/mod/AvHGamerules.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/source/mod/AvHGamerules.cpp b/main/source/mod/AvHGamerules.cpp index d6561cb..2fb8be6 100644 --- a/main/source/mod/AvHGamerules.cpp +++ b/main/source/mod/AvHGamerules.cpp @@ -3847,7 +3847,8 @@ int AvHGamerules::GetBaseHealthForMessageID(AvHMessageID inMessageID) const case ALIEN_BUILD_OFFENSE_CHAMBER: health = BALANCE_VAR(kOffenseChamberHealth); break; case ALIEN_BUILD_DEFENSE_CHAMBER: health = BALANCE_VAR(kDefenseChamberHealth); break; case ALIEN_BUILD_SENSORY_CHAMBER: health = BALANCE_VAR(kSensoryChamberHealth); break; - case ALIEN_BUILD_MOVEMENT_CHAMBER: health = BALANCE_VAR(kHiveHealth); break; + case ALIEN_BUILD_MOVEMENT_CHAMBER: health = BALANCE_VAR(kMovementChamberHealth); break; + case ALIEN_BUILD_HIVE: health = BALANCE_VAR(kHiveHealth); break; } return health; }