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");