Fix kick leave message not showing on IRC

This commit is contained in:
UnknownShadow200 2018-06-02 12:36:20 +10:00
parent d9302b9e1a
commit 3576b96b0e

View File

@ -303,7 +303,8 @@ namespace MCGalaxy {
}
Logger.Log(LogType.UserActivity, "{0} disconnected ({1}%S).", name, chatMsg);
} else {
Chat.MessageGlobal(this, "&c- " + FullName + " %Skicked %S" + chatMsg);
string leavem = "&c- " + FullName + " %Skicked %S" + chatMsg;
Chat.MessageFrom(ChatScope.Global, this, leavem, null, null, true);
Logger.Log(LogType.UserActivity, "{0} kicked ({1}%S).", name, chatMsg);
}
}