Fixed: Guilds with same characters and not same spaces

This commit is contained in:
kervala 2015-01-21 13:20:56 +01:00
parent 1c543641c9
commit 9981f07921

View file

@ -1138,7 +1138,7 @@ bool CNameManager::loadGuildsNamesFromTxt()
// merge the first words until we have only 3 words
while (words.size() > 3)
{
words[0] += words[1];
words[0] += " " + words[1];
words.erase(words.begin()+1);
}
BOMB_IF (words.size()!=3,"Invalid line "<<i+1<<" found in guild names file : '"<<line<<"'", continue);