From e2f9daa00bfeee2e9a9ed8fee794c5bbca642f41 Mon Sep 17 00:00:00 2001 From: Andreas 'count' Kotes Date: Wed, 15 Jul 2020 23:06:37 +0200 Subject: [PATCH] Don't enable cmd module by default --- modules/cmd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/cmd.py b/modules/cmd.py index dd431fd..7fd4ec2 100644 --- a/modules/cmd.py +++ b/modules/cmd.py @@ -6,6 +6,7 @@ import shlex class MatrixModule(BotModule): def __init__(self, name): super().__init__(name) + self.enabled = False self.commands = {} async def matrix_message(self, bot, room, event):