From ab3c303695950cf0a966d0193eef11e24e8c6917 Mon Sep 17 00:00:00 2001 From: Soumt Nam Date: Wed, 13 Sep 2023 19:58:31 +0900 Subject: [PATCH] fix: magic conch trigger regex fix 2 --- 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 e56dbc5..3f84e18 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*.*?" print("[Magic_Conch] Selection helper module, Magic_Conch V1 loaded.")