Fix global exception handler

This commit is contained in:
SilicaAndPina 2021-05-13 12:42:42 +12:00
parent 9930832730
commit 1c57c3fefd
4 changed files with 38 additions and 37 deletions

View file

@ -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;