Fixed: Guilds with same characters and not same spaces
--HG-- branch : develop
This commit is contained in:
parent
b26e7f4c1b
commit
eea09d8893
1 changed files with 1 additions and 1 deletions
|
@ -1138,7 +1138,7 @@ bool CNameManager::loadGuildsNamesFromTxt()
|
||||||
// merge the first words until we have only 3 words
|
// merge the first words until we have only 3 words
|
||||||
while (words.size() > 3)
|
while (words.size() > 3)
|
||||||
{
|
{
|
||||||
words[0] += words[1];
|
words[0] += " " + words[1];
|
||||||
words.erase(words.begin()+1);
|
words.erase(words.begin()+1);
|
||||||
}
|
}
|
||||||
BOMB_IF (words.size()!=3,"Invalid line "<<i+1<<" found in guild names file : '"<<line<<"'", continue);
|
BOMB_IF (words.size()!=3,"Invalid line "<<i+1<<" found in guild names file : '"<<line<<"'", continue);
|
||||||
|
|
Loading…
Reference in a new issue