X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FChatLog.php;h=79eab97debff1a56a6ee081efbdf59951f22a5d9;hb=abdc2ea1ade1fb12ceacc28660890750e69ae36f;hp=05c1584e44a306dc47d4abc130fcde3f598370bc;hpb=656a52b07c42d4a157a193d0c7004c744adba87f;p=alttp.git diff --git a/app/Models/ChatLog.php b/app/Models/ChatLog.php index 05c1584..79eab97 100644 --- a/app/Models/ChatLog.php +++ b/app/Models/ChatLog.php @@ -134,7 +134,8 @@ class ChatLog extends Model { } } - public static function spammyText($text) { + public static function spammyText($raw_text) { + $text = strtolower($raw_text); if (substr($text, 0, 1) == '!') { return true; } @@ -153,6 +154,9 @@ class ChatLog extends Model { if (strpos($text, 'followers') !== false) { return true; } + if (strpos($text, 'horstie') !== false) { + return true; + } if (strpos($text, 'promotion') !== false) { return true; } @@ -162,10 +166,10 @@ class ChatLog extends Model { if (strpos($text, 'view ers') !== false) { return true; } - if (strpos($text, 'vielen Dank für den Raid') !== false) { + if (strpos($text, 'vielen dank für den raid') !== false) { return true; } - if (strpos($text, 'Willkommen auf Starbase 47') !== false) { + if (strpos($text, 'willkommen auf starbase 47') !== false) { return true; } return false;