mirror of
https://github.com/nuttylmao/nutty.gg.git
synced 2026-09-19 04:00:59 -04:00
Added support for Shared Chat message deleted, bans and time outs
This commit is contained in:
@@ -212,6 +212,21 @@ client.on('Twitch.ChatCleared', (response) => {
|
|||||||
TwitchChatCleared(response.data);
|
TwitchChatCleared(response.data);
|
||||||
})
|
})
|
||||||
|
|
||||||
|
client.on('Twitch.SharedChatMessageDeleted', (response) => {
|
||||||
|
console.debug(response.data);
|
||||||
|
TwitchChatMessageDeleted(response.data);
|
||||||
|
})
|
||||||
|
|
||||||
|
client.on('Twitch.SharedChatUserBanned', (response) => {
|
||||||
|
console.debug(response.data);
|
||||||
|
TwitchUserBanned(response.data);
|
||||||
|
})
|
||||||
|
|
||||||
|
client.on('Twitch.SharedChatUserTimedout', (response) => {
|
||||||
|
console.debug(response.data);
|
||||||
|
TwitchUserBanned(response.data);
|
||||||
|
})
|
||||||
|
|
||||||
client.on('YouTube.Message', (response) => {
|
client.on('YouTube.Message', (response) => {
|
||||||
console.debug(response.data);
|
console.debug(response.data);
|
||||||
YouTubeMessage(response.data)
|
YouTubeMessage(response.data)
|
||||||
|
|||||||
Reference in New Issue
Block a user