mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fixed: Guilds with same characters and not same spaces
This commit is contained in:
parent
1c543641c9
commit
9981f07921
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