Audio, TTS
This commit is contained in:
@@ -5,15 +5,15 @@ class Command():
|
||||
# Useful boilerplate
|
||||
# You should overwrite these values!
|
||||
|
||||
self.name = "command" # Lower case and no spaces please :)
|
||||
self.display_name = "Command"
|
||||
self.description = "command description"
|
||||
self.triggers = ["command"]
|
||||
self.name = 'command' # No spaces please
|
||||
self.display_name = 'Command'
|
||||
self.description = 'command description'
|
||||
self.triggers = ['command']
|
||||
|
||||
self.hidden = False
|
||||
|
||||
# {} will be .formatted to be the command prefix
|
||||
self.usage = "{}command"
|
||||
self.usage = '{}command'
|
||||
|
||||
async def run(self, bot: discord.Client, config: dict, message: discord.message, content: str):
|
||||
# Implement this!
|
||||
|
||||
Reference in New Issue
Block a user