void GameState::ReloadCharacters() would throw an error when default was present. Reversed behaviour.
This commit is contained in:
@@ -185,7 +185,7 @@ void GameState::ReloadCharacters()
|
|||||||
if( sCharName == "cvs" ) // the directory called "CVS"
|
if( sCharName == "cvs" ) // the directory called "CVS"
|
||||||
continue; // ignore it
|
continue; // ignore it
|
||||||
|
|
||||||
if( sCharName.CompareNoCase("default")!=0 )
|
if( sCharName.CompareNoCase("default")==0 )
|
||||||
FoundDefault = true;
|
FoundDefault = true;
|
||||||
|
|
||||||
Character* pChar = new Character;
|
Character* pChar = new Character;
|
||||||
|
|||||||
Reference in New Issue
Block a user