diff --git a/edmond/plugins/capture.py b/edmond/plugins/capture.py index ebe7948..8e50129 100644 --- a/edmond/plugins/capture.py +++ b/edmond/plugins/capture.py @@ -19,6 +19,8 @@ class CapturePlugin(Plugin): self.current_thing = None def on_pubmsg(self, event): + if not self.respects_handling_conditions(): + return False if self.current_thing is not None: message = event.arguments[0] if message == self.config["capture_sentence"]: