1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-12 02:28:11 +02:00

Removed non-translatable string

This commit is contained in:
Ivan Savenko 2023-02-25 18:11:17 +02:00
parent 260f6d626c
commit 27cf4d1cd5

View File

@ -739,7 +739,7 @@ void CMapLoaderH3M::readRumors()
for(int it = 0; it < rumNr; it++)
{
Rumor ourRumor;
ourRumor.name = readLocalizedString(TextIdentifier("header", "rumor", it, "name"));
ourRumor.name = readBasicString();
ourRumor.text = readLocalizedString(TextIdentifier("header", "rumor", it, "text"));
map->rumors.push_back(ourRumor);
}