From c5bee83a4ac2fa67a6984c85ad5fb7006cef2a53 Mon Sep 17 00:00:00 2001 From: Soumt Nam Date: Wed, 13 Sep 2023 19:56:29 +0900 Subject: [PATCH] fix: magic conch trigger regex fix --- modules/Magic_Conch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Magic_Conch.py b/modules/Magic_Conch.py index 5173f51..e56dbc5 100644 --- a/modules/Magic_Conch.py +++ b/modules/Magic_Conch.py @@ -6,7 +6,7 @@ class MConch(ModuleInterface): def __init__(self): super().__init__() self.name = "Magic_Conch" - self.regex_pattern = r".*마법의 미냐고동\s님\s*.*?" + self.regex_pattern = r".*마법의 미냐고동\s*님\s*.*?" print("[Magic_Conch] Selection helper module, Magic_Conch V1 loaded.")