From ad5e7795e2bf6b1f3c98891fd1b6a6570ccfaea7 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 8 Aug 2023 12:16:48 -0400 Subject: [PATCH] fix: potential fix for coco emoji not wanting custom emojis --- galaxy/galaxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 31ced39..7c4abeb 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -115,7 +115,7 @@ class Galaxy(commands.Cog): def extract_id(self, input_string): match = re.search(r'(?<=:)\d+(?=>)', input_string) if match: - return match.group() + return match.group(1) else: return input_string