Add bots command

This commit is contained in:
2021-01-15 14:42:02 +01:00
parent 82f6ba0681
commit 2bb47e6f86
2 changed files with 6 additions and 0 deletions

View File

@ -320,6 +320,8 @@ class Bot(ClientXMPP):
self.reply(self.help, **kwargs)
except AttributeError:
self.reply("No help found 🤔️", **kwargs)
elif command == "bots" and "room" in kwargs:
self.reply("o/", **kwargs)
else:
self.log.error(f"'{command}' direct command is not recognised")