- small fix for display

This commit is contained in:
SoftCoder 2014-12-20 15:32:40 -08:00
parent 32c11f41de
commit 7418fac810
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ string UpgradeTypeBase::getDesc(bool translatedValue) const{
Lang &lang= Lang::getInstance();
if(getMaxHp() != 0) {
str += indent+lang.getString("Hp",(translatedValue == true ? "" : "english")) + " *" + intToStr(getMaxHp());
str += indent+lang.getString("Hp",(translatedValue == true ? "" : "english")) + " +" + intToStr(getMaxHp());
if(getMaxHpRegeneration() != 0) {
str += " [" + intToStr(getMaxHpRegeneration()) + "]";
}