Fix Warning V3093

This commit is contained in:
Ilya Sosnovsky 2017-10-25 10:08:48 +03:00
parent 609deb1c4e
commit fd75e02208

View file

@ -143,8 +143,8 @@ private void button2_Click(object sender, EventArgs e)
switch (chatStage)
{
case 1: // td asks are you the time distorter guy
if (msg.Contains("yes") | msg.Contains("yea") | msg.Contains("yep") | msg.Contains("thats me") | msg.Contains("that's me")) chatStage = 2;
else if (msg.Contains("no") | msg.Contains("nope") | msg.Contains("not")) chatStage = 3;
if (msg.Contains("yes") || msg.Contains("yea") || msg.Contains("yep") || msg.Contains("thats me") || msg.Contains("that's me")) chatStage = 2;
else if (msg.Contains("no") || msg.Contains("nope") || msg.Contains("not")) chatStage = 3;
else chatStage = 4;
chatScript2();