Skip to content

Commit

Permalink
Fixes recent changes in Kick's UI that broke the authentication process.
Browse files Browse the repository at this point in the history
Also fixes the Chat Command Cooldown (Any) that didn't work.
  • Loading branch information
Sehelitar committed Sep 18, 2024
1 parent 4d9b7a1 commit 83cf6ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BotClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public BotClient() {
CPH.RegisterCustomTrigger("[Kick] Chat Message", BotEventListener.BotEventType.Message, new string[] { "Kick", "Chat" });

CPH.RegisterCustomTrigger("[Kick] Chat Command (Any)", BotEventListener.BotEventType.ChatCommand, new string[] { "Kick", "Commands" });
CPH.RegisterCustomTrigger("[Kick] Chat Command Cooldown (Any)", BotEventListener.BotEventType.ChatCommand, new string[] { "Kick", "Commands" });
CPH.RegisterCustomTrigger("[Kick] Chat Command Cooldown (Any)", BotEventListener.BotEventType.ChatCommandCooldown, new string[] { "Kick", "Commands" });

CPH.RegisterCustomTrigger("[Kick] Message Pinned", BotEventListener.BotEventType.MessagePinned, new string[] { "Kick", "Chat" });
CPH.RegisterCustomTrigger("[Kick] Message Unpinned", BotEventListener.BotEventType.MessageUnpinned, new string[] { "Kick", "Chat" });
Expand Down
2 changes: 1 addition & 1 deletion KickAPI

0 comments on commit 83cf6ac

Please sign in to comment.