summaryrefslogtreecommitdiff
path: root/bot/src/schemas/stream.cpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-07-01 18:54:10 +0500
committerilotterytea <iltsu@alright.party>2025-07-01 18:54:10 +0500
commit8c2e0d8c1faabb76f2e75cddc8b7da2caabf8da6 (patch)
tree5d227bd7529c0fa7e248737d430212275621bb93 /bot/src/schemas/stream.cpp
parent25a25a07a7b68443791974800dbfc77d223392d6 (diff)
feat: KICK SUPPORT RAAAAH!!!! emojiAngry
Diffstat (limited to 'bot/src/schemas/stream.cpp')
-rw-r--r--bot/src/schemas/stream.cpp16
1 files changed, 16 insertions, 0 deletions
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) {