We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a729aa0 commit b5d53c7Copy full SHA for b5d53c7
fCraft/Network/IRC.cs
@@ -462,7 +462,7 @@ void HandleIrcPartQuit(IRCMessage msg) {
462
// Announce parts/quits of IRC people (except the bots)
463
if (ConfigKey.IRCBotAnnounceIRCJoins.Enabled() && !IsBotNick(msg.Nick)) {
464
if (String.IsNullOrEmpty(msg.Channel)) {
465
- Server.Message("&I(IRC) {0} left IRC");
+ Server.Message("&I(IRC) {0} left IRC", msg.Nick);
466
} else {
467
Server.Message("&I(IRC) {0} left the IRC channel ({1})", msg.Nick, msg.Channel);
468
}
0 commit comments