From 10167b597a95321b58fe9a2a6ecb9b55bf7646b3 Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Wed, 24 Jan 2024 21:16:56 -0500 Subject: [PATCH] disable twitchsummon --- Behavior/TwitchSummon.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Behavior/TwitchSummon.cs b/Behavior/TwitchSummon.cs index a5acf3f..224d17c 100644 --- a/Behavior/TwitchSummon.cs +++ b/Behavior/TwitchSummon.cs @@ -16,6 +16,11 @@ public class TwitchSummon : Behavior //HOWEVER, if not-the-broadcaster summons it, 1) all channel permissions to strict and 2) auto-disconnect on stream end //i don't know if the twitch *chat* interface has knowledge of if the stream ends. maybe auto-disconnect after like 2 hours? + public override bool ShouldAct(Message message) + { + return false; + } + public override async Task ActOn(Message message) { var ti = ProtocolInterfaces.ProtocolList.twitchs.FirstOrDefault();