forked from teamnwah/openmw-tes3coop
Broken lower casing fix (Fixes #3068)
This commit is contained in:
parent
2f9b404094
commit
39feb547a0
1 changed files with 1 additions and 2 deletions
|
@ -35,8 +35,7 @@ namespace Interpreter{
|
||||||
if(text[i] == eschar)
|
if(text[i] == eschar)
|
||||||
{
|
{
|
||||||
retval << text.substr(start, i - start);
|
retval << text.substr(start, i - start);
|
||||||
std::string temp = text.substr(i+1, 100);
|
std::string temp = Misc::StringUtils::lowerCase(text.substr(i+1, 100));
|
||||||
Misc::StringUtils::lowerCase(temp);
|
|
||||||
|
|
||||||
bool found = false;
|
bool found = false;
|
||||||
try
|
try
|
||||||
|
|
Loading…
Reference in a new issue