Browse Source

Removed non-translatable string

Ivan Savenko 2 years ago
parent
commit
27cf4d1cd5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/mapping/MapFormatH3M.cpp

+ 1 - 1
lib/mapping/MapFormatH3M.cpp

@@ -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);
 	}