mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 13:45:42 +12:00
fix casing
This commit is contained in:
parent
66281bc697
commit
b34b75ff9d
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ namespace HISP.Game.Events
|
|||
string msgCheck = message.ToLower();
|
||||
foreach(string answer in Answers)
|
||||
{
|
||||
if (msgCheck.ToLower().Contains(answer))
|
||||
if (msgCheck.Contains(answer.ToLower()))
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue