mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-24 13:45:54 +12:00
Fix global exception handler
This commit is contained in:
parent
9930832730
commit
1c57c3fefd
4 changed files with 38 additions and 37 deletions
|
@ -109,7 +109,7 @@ namespace HISP.Game.Events
|
|||
string msgCheck = message.ToLower();
|
||||
foreach(string answer in Answers)
|
||||
{
|
||||
if (answer.ToLower().Contains(msgCheck))
|
||||
if (msgCheck.ToLower().Contains(answer))
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue