mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 09:02:01 -05:00
Fix Warning V3093
This commit is contained in:
parent
609deb1c4e
commit
fd75e02208
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue