From 69472bfd5bb3566b1980f7897310aba8a300ed69 Mon Sep 17 00:00:00 2001 From: copygirl Date: Wed, 1 Oct 2025 23:48:18 +0200 Subject: [PATCH] Update hardcoded triggers --- copyPat.gd | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/copyPat.gd b/copyPat.gd index 8ffb7e2..bd4c721 100644 --- a/copyPat.gd +++ b/copyPat.gd @@ -5,13 +5,18 @@ extends Mod_Base var triggers = { "": ["\\bcopyPat\\b", "pats copygirl\\b"], - "Kuerb1": ["\\bkuerb1Pats\\b", "\\bkuerb1PatPat\\b", "pats [kK]uerb[1y]\\b"], + "Kuerb1": ["\\bkuerb1Pats\\b", "pats [kK]uerb[1y]\\b"], } func _ready() -> void: add_tracked_setting("countdown", "Seconds active", { "min": 0.0, "max": 3600.0 }) -func handle_channel_chat_message(_cheerer_username: String, _cheerer_display_name: String, message: String, _bits_count: int) -> void: +func handle_channel_chat_message( + _cheerer_username: String, + _cheerer_display_name: String, + message: String, + _bits_count: int, +) -> void: for nickname in triggers: for regex in triggers[nickname]: if RegEx.create_from_string(regex).search(message):