diff --git a/applications/SLIRC/bin/Debug/SLIRC.exe b/applications/SLIRC/bin/Debug/SLIRC.exe index d17efa77..9860013b 100644 Binary files a/applications/SLIRC/bin/Debug/SLIRC.exe and b/applications/SLIRC/bin/Debug/SLIRC.exe differ diff --git a/applications/SLIRC/bin/Debug/SLIRC.pdb b/applications/SLIRC/bin/Debug/SLIRC.pdb index 087a5a1d..357a0a7b 100644 Binary files a/applications/SLIRC/bin/Debug/SLIRC.pdb and b/applications/SLIRC/bin/Debug/SLIRC.pdb differ diff --git a/applications/SLIRC/frmSLIRC.Designer.cs b/applications/SLIRC/frmSLIRC.Designer.cs index 5e050683..b65e4c38 100644 --- a/applications/SLIRC/frmSLIRC.Designer.cs +++ b/applications/SLIRC/frmSLIRC.Designer.cs @@ -155,7 +155,7 @@ namespace SLIRC this.txtServerName.Name = "txtServerName"; this.txtServerName.Size = new System.Drawing.Size(130, 20); this.txtServerName.TabIndex = 54; - this.txtServerName.Text = "irc.freenode.org"; + this.txtServerName.Text = "irc.efnet.pl"; // // label4 // @@ -189,7 +189,7 @@ namespace SLIRC this.txtChannel.Name = "txtChannel"; this.txtChannel.Size = new System.Drawing.Size(130, 20); this.txtChannel.TabIndex = 54; - this.txtChannel.Text = "#secondlifelug"; + this.txtChannel.Text = "#libsl"; // // btnJoin // diff --git a/applications/SLIRC/frmSLIRC.cs b/applications/SLIRC/frmSLIRC.cs index acb262e8..03dc96e3 100644 --- a/applications/SLIRC/frmSLIRC.cs +++ b/applications/SLIRC/frmSLIRC.cs @@ -62,7 +62,7 @@ namespace SLIRC else { MessageBox.Show(this, "Error logging in: " + client.Network.LoginError); - listenthread.Abort(); + //if(listenthread) listenthread.Abort(); cmdConnect.Text = "Connect"; lstAllowedUsers.Enabled = lstLog.Enabled = btnJoin.Enabled = btnSay.Enabled = false; txtFirstName.Enabled = txtLastName.Enabled = txtPassword.Enabled = true; @@ -134,10 +134,10 @@ namespace SLIRC } else { - if (lstAllowedUsers.Items.Contains(name) && audible == 1) + if (lstAllowedUsers.Items.Contains(name) && audible == 1 && !message.Equals("")) { LogMessage(name + ": " + message); - ircclient.SendMessage(SendType.Message, ircclient.GetChannels()[0], name + " : " + message); + ircclient.SendMessage(SendType.Message, txtChannel.Text, name + " : " + message); } } } diff --git a/applications/SLIRC/obj/Debug/SLIRC.csproj.GenerateResource.Cache b/applications/SLIRC/obj/Debug/SLIRC.csproj.GenerateResource.Cache index 90fbf0e2..a6bf21c2 100644 Binary files a/applications/SLIRC/obj/Debug/SLIRC.csproj.GenerateResource.Cache and b/applications/SLIRC/obj/Debug/SLIRC.csproj.GenerateResource.Cache differ diff --git a/applications/SLIRC/obj/Debug/SLIRC.exe b/applications/SLIRC/obj/Debug/SLIRC.exe index d17efa77..9860013b 100644 Binary files a/applications/SLIRC/obj/Debug/SLIRC.exe and b/applications/SLIRC/obj/Debug/SLIRC.exe differ diff --git a/applications/SLIRC/obj/Debug/SLIRC.pdb b/applications/SLIRC/obj/Debug/SLIRC.pdb index 087a5a1d..357a0a7b 100644 Binary files a/applications/SLIRC/obj/Debug/SLIRC.pdb and b/applications/SLIRC/obj/Debug/SLIRC.pdb differ