mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
Fix for hint
This commit is contained in:
parent
1d59dfecef
commit
268b87052b
@ -154,8 +154,8 @@ std::pair<std::string, std::string> InterfaceObjectConfigurable::readHintText(co
|
||||
|
||||
if(config.getType() == JsonNode::JsonType::DATA_STRUCT)
|
||||
{
|
||||
result.first = config["hover"].String();
|
||||
result.second = config["help"].String();
|
||||
result.first = readText(config["hover"]);
|
||||
result.second = readText(config["help"]);
|
||||
return result;
|
||||
}
|
||||
if(config.getType() == JsonNode::JsonType::DATA_STRING)
|
||||
|
Loading…
Reference in New Issue
Block a user