mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-06 17:41:04 +00:00
Fix empty legacy meta being persisted
This commit is contained in:
parent
bb4ef52954
commit
e9087d1be7
1 changed files with 4 additions and 5 deletions
|
@ -13,11 +13,10 @@ void ItemStackMetadata::serialize(std::ostream &os) const
|
|||
{
|
||||
std::ostringstream os2;
|
||||
os2 << DESERIALIZE_START;
|
||||
for (StringMap::const_iterator
|
||||
it = m_stringvars.begin();
|
||||
it != m_stringvars.end(); ++it) {
|
||||
os2 << it->first << DESERIALIZE_KV_DELIM
|
||||
<< it->second << DESERIALIZE_PAIR_DELIM;
|
||||
for (const auto &stringvar : m_stringvars) {
|
||||
if (!stringvar.first.empty() || !stringvar.second.empty())
|
||||
os2 << stringvar.first << DESERIALIZE_KV_DELIM
|
||||
<< stringvar.second << DESERIALIZE_PAIR_DELIM;
|
||||
}
|
||||
os << serializeJsonStringIfNeeded(os2.str());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue