From faed5f5b7d6ca5afe9e04a51b9db06ae227c19f9 Mon Sep 17 00:00:00 2001 From: NewEraCracker Date: Sun, 20 Feb 2011 19:06:57 +0000 Subject: [PATCH] Version 1.1.1.24 - IRC connection and TCP/UDP method improvements --- Properties/AssemblyInfo.cs | 2 +- frmMain.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index fd30824..e4b939d 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -11,4 +11,4 @@ [assembly: System.CLSCompliant(true)] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("1.1.1.23")] +[assembly: AssemblyVersion("1.1.1.24")] diff --git a/frmMain.cs b/frmMain.cs index 34db6b2..a79190f 100644 --- a/frmMain.cs +++ b/frmMain.cs @@ -331,7 +331,7 @@ void OnQuit(object sender, QuitEventArgs e) } void OnTopic(object sender, TopicEventArgs e) { - if (e.Channel.ToLower() == channel && e.Topic.StartsWith("!lazor")) + if (e.Channel.ToLower() == channel && e.Topic.StartsWith("!lazor ")) { List pars = new List(e.Topic.Split(' ')); SetStatus("Controlled by topic"); @@ -345,7 +345,7 @@ void OnTopic(object sender, TopicEventArgs e) } void OnTopicChange(object sender, TopicChangeEventArgs e) { - if (e.Channel.ToLower() == channel && e.NewTopic.StartsWith("!lazor")) + if (e.Channel.ToLower() == channel && e.NewTopic.StartsWith("!lazor ")) { List pars = new List(e.NewTopic.Split(' ')); SetStatus("Controlled by topic");