diff --git a/edmond/plugins/capture_give.py b/edmond/plugins/capture_give.py index a82772c..306ae29 100644 --- a/edmond/plugins/capture_give.py +++ b/edmond/plugins/capture_give.py @@ -30,7 +30,7 @@ class CaptureGivePlugin(Plugin): # "give" command. if self.command.ident == self.config["commands"][0]: content = self.command.raw[len(self.command.matched):].strip() - matched = self.content_re.matched(content) + matched = self.content_re.match(content) if not matched: return False groups = matched.groupdict()