mirror of
https://github.com/vcmi/vcmi.git
synced 2025-06-21 00:19:29 +02:00
Fix error messages in log on map start
This commit is contained in:
@ -51,8 +51,11 @@ void MetaString::appendRawString(const std::string & value)
|
||||
|
||||
void MetaString::appendTextID(const std::string & value)
|
||||
{
|
||||
message.push_back(EMessage::APPEND_TEXTID_STRING);
|
||||
stringsTextID.push_back(value);
|
||||
if (!value.empty())
|
||||
{
|
||||
message.push_back(EMessage::APPEND_TEXTID_STRING);
|
||||
stringsTextID.push_back(value);
|
||||
}
|
||||
}
|
||||
|
||||
void MetaString::appendNumber(int64_t value)
|
||||
|
Reference in New Issue
Block a user