1
0

World storage names are now case-INsensitive

git-svn-id: http://mc-server.googlecode.com/svn/trunk@373 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com 2012-03-06 19:40:05 +00:00
parent e463ddc500
commit 5e4e89b6ee

View File

@ -274,14 +274,14 @@ void cWorldStorage::InitSchemas(void)
m_Schemas.push_back(new cWSSForgetful(m_World));
// Add new schemas here
if (m_StorageSchemaName == "Default")
if (stricmp(m_StorageSchemaName.c_str(), "default") == 0)
{
m_SaveSchema = m_Schemas.front();
return;
}
for (cWSSchemaList::iterator itr = m_Schemas.begin(); itr != m_Schemas.end(); ++itr)
{
if ((*itr)->GetName() == m_StorageSchemaName)
if (stricmp((*itr)->GetName().c_str(), m_StorageSchemaName.c_str()) == 0)
{
m_SaveSchema = *itr;
return;