Renamed loss-percentage to faction-loss-percentage

Also renamed loss-value accordingly. As discussed with Titi in IRC.
This commit is contained in:
Mike Hoffert 2014-07-22 14:58:41 -06:00
parent b9eb74d916
commit 86954aed47
1 changed files with 4 additions and 4 deletions

View File

@ -620,15 +620,15 @@ void UnitType::loaddd(int id,const string &dir, const TechTree *techTree,
resource.setAmountPercentage(0); resource.setAmountPercentage(0);
} }
if(resourceNode->hasAttribute("loss-value")) { if(resourceNode->hasAttribute("faction-loss-value")) {
resource.setLossValue(resourceNode->getAttribute("loss-value")->getIntValue()); resource.setLossValue(resourceNode->getAttribute("faction-loss-value")->getIntValue());
} }
else { else {
resource.setLossValue(0); resource.setLossValue(0);
} }
if(resourceNode->hasAttribute("loss-percentage")) { if(resourceNode->hasAttribute("faction-loss-percentage")) {
resource.setLossPercentage(resourceNode->getAttribute("loss-percentage")->getIntValue()); resource.setLossPercentage(resourceNode->getAttribute("faction-loss-percentage")->getIntValue());
} }
else { else {
resource.setLossPercentage(0); resource.setLossPercentage(0);