1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-03 14:52:11 +02:00

remove bracket

This commit is contained in:
kdmcser 2024-10-02 19:57:26 +08:00 committed by GitHub
parent 4896b51a5d
commit 60177bffab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -141,9 +141,7 @@ std::string CGCreature::getPopupText(PlayerColor player) const
{ {
std::string hoverName = getHoverText(player); std::string hoverName = getHoverText(player);
if (settings["general"]["enableUiEnhancements"].Bool()) if (settings["general"]["enableUiEnhancements"].Bool())
{
hoverName += getMonsterLevelText(); hoverName += getMonsterLevelText();
}
return hoverName; return hoverName;
} }