aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Histacom2/OS/Win98/Win98Apps/WebChat1999.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Histacom2/OS/Win98/Win98Apps/WebChat1999.cs b/Histacom2/OS/Win98/Win98Apps/WebChat1999.cs
index f5bfb24..b484fa7 100644
--- a/Histacom2/OS/Win98/Win98Apps/WebChat1999.cs
+++ b/Histacom2/OS/Win98/Win98Apps/WebChat1999.cs
@@ -143,8 +143,8 @@ namespace Histacom2.OS.Win98.Win98Apps
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();