Allow commands for all non-notice message types
This commit is contained in:
parent
038fbc43f1
commit
91f804d4cf
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ class MaubotMatrixClient(MatrixClient):
|
|||
pass
|
||||
|
||||
async def _command_event_handler(self, evt: MessageEvent) -> None:
|
||||
if evt.sender == self.mxid or evt.content.msgtype != MessageType.TEXT:
|
||||
if evt.sender == self.mxid or evt.content.msgtype == MessageType.NOTICE:
|
||||
return
|
||||
for command in self.commands:
|
||||
if command.match(evt):
|
||||
|
|
Loading…
Reference in a new issue