From 8c2e0d8c1faabb76f2e75cddc8b7da2caabf8da6 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Tue, 1 Jul 2025 18:54:10 +0500 Subject: feat: KICK SUPPORT RAAAAH!!!! emojiAngry --- bot/src/schemas/stream.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'bot/src/schemas/stream.cpp') diff --git a/bot/src/schemas/stream.cpp b/bot/src/schemas/stream.cpp index f6df3f4..0d21caf 100644 --- a/bot/src/schemas/stream.cpp +++ b/bot/src/schemas/stream.cpp @@ -10,6 +10,14 @@ namespace bot::schemas { return EventType::TITLE; } else if (type == "game") { return EventType::GAME; + } else if (type == "kick_live") { + return EventType::KICK_LIVE; + } else if (type == "kick_offline") { + return EventType::KICK_OFFLINE; + } else if (type == "kick_title") { + return EventType::KICK_TITLE; + } else if (type == "kick_game") { + return EventType::KICK_GAME; } else if (type == "github") { return EventType::GITHUB; } else if (type == "7tv_emote_add") { @@ -42,6 +50,14 @@ namespace bot::schemas { return "title"; } else if (type == GAME) { return "game"; + } else if (type == KICK_LIVE) { + return "kick_live"; + } else if (type == KICK_OFFLINE) { + return "kick_offline"; + } else if (type == KICK_TITLE) { + return "kick_title"; + } else if (type == KICK_GAME) { + return "kick_game"; } else if (type == GITHUB) { return "github"; } else if (type == STV_EMOTE_CREATE) { -- cgit v1.2.3