From 7a3a4cddd8b4779c6ac2df0f1ce6287e223c5925 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Sat, 4 Jul 2026 11:51:07 +0200 Subject: [PATCH] more aggressive ai viewers combating --- app/TwitchBot/TokenizedMessage.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/TwitchBot/TokenizedMessage.php b/app/TwitchBot/TokenizedMessage.php index 6b40347..6494c56 100644 --- a/app/TwitchBot/TokenizedMessage.php +++ b/app/TwitchBot/TokenizedMessage.php @@ -261,6 +261,9 @@ class TokenizedMessage { if ($this->startsWith('!')) { return true; } + if ($this->startsWithRaw('aiview')) { + return true; + } if ($this->contains(['€', '$', '@', '://'])) { return true; } -- 2.47.3