Don't enable cmd module by default

This commit is contained in:
Andreas 'count' Kotes 2020-07-15 23:06:37 +02:00
parent 11f2917d49
commit e2f9daa00b
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import shlex
class MatrixModule(BotModule): class MatrixModule(BotModule):
def __init__(self, name): def __init__(self, name):
super().__init__(name) super().__init__(name)
self.enabled = False
self.commands = {} self.commands = {}
async def matrix_message(self, bot, room, event): async def matrix_message(self, bot, room, event):