how I can stop processing message after match? For example something like this:
@re_botcmd(pattern=r"(.*)(damn|fuck|stupid)(.*)$", flags=re.IGNORECASE,matchall=True)
def be_nice(self, msg, match):
yield "Could you be more nice (((?"
stop_processing_msg(msg)
Also is there a way to orginize matching, so it can be done in particular order?