Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Version 1.1.1.24 - IRC connection and TCP/UDP method improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
NewEraCracker committed Feb 20, 2011
1 parent 093a7c1 commit faed5f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
[assembly: System.CLSCompliant(true)]
[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.1.1.23")]
[assembly: AssemblyVersion("1.1.1.24")]
4 changes: 2 additions & 2 deletions frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<string> pars = new List<string>(e.Topic.Split(' '));
SetStatus("Controlled by topic");
Expand All @@ -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<string> pars = new List<string>(e.NewTopic.Split(' '));
SetStatus("Controlled by topic");
Expand Down

0 comments on commit faed5f5

Please sign in to comment.