From 7418fac8107a79ef564eb2101056d55e687e59f3 Mon Sep 17 00:00:00 2001 From: SoftCoder Date: Sat, 20 Dec 2014 15:32:40 -0800 Subject: [PATCH] - small fix for display --- source/glest_game/types/upgrade_type.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/glest_game/types/upgrade_type.cpp b/source/glest_game/types/upgrade_type.cpp index 5ceb4dc5..206dce98 100644 --- a/source/glest_game/types/upgrade_type.cpp +++ b/source/glest_game/types/upgrade_type.cpp @@ -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()) + "]"; }