game: better wording for "changes automatically abandoned" message

This commit is contained in:
Crypto City 2020-07-07 19:03:13 +00:00
parent cfd4f8773e
commit a0151f3322

View File

@ -1670,7 +1670,7 @@ void CryptoCityUrho3D::HandleUpdate(StringHash eventType, VariantMap& eventData)
const uint32_t id = std::get<0>(*flagUnderConstruction);
if (std::find_if(dirty_flags.begin(), dirty_flags.end(), [id](const std::shared_ptr<Flag> &f) { return f->id == id; }) != dirty_flags.end())
{
new MessageBox(context_, "The building you were currently building was changed on the blockchain. Building automatically abandoned.");
new MessageBox(context_, "The building you were currently editing was changed on the blockchain. Changes automatically abandoned.");
SetNoFlagUnderConstruction();
}
}