Browse Source

Merge branch 'development'

tags/v1.3.0
roxie 6 years ago
parent
commit
31828af97e
2 changed files with 3 additions and 1 deletions
  1. +2
    -0
      README.md
  2. +1
    -1
      cogs/customcommands.py

+ 2
- 0
README.md View File



######Bug FIxes ######Bug FIxes
- Fixed bug where Custom Commands would ignore the blacklist. - Fixed bug where Custom Commands would ignore the blacklist.
- Fixed issue where custom command outputs were always lowercase
- Fixed some naughty swears that were placeholders for a more civilised response.
- Removed Herobrine - Removed Herobrine


#### v1.2.0 #### v1.2.0

+ 1
- 1
cogs/customcommands.py View File

"Adds a custom command to the list of custom commands." "Adds a custom command to the list of custom commands."
self.servers = self.con.load_config() self.servers = self.con.load_config()
command = command.lower() command = command.lower()
output = output.lower()
output = output
zero = self.servers[ctx.message.server.id]["custom_commands"]["0"] zero = self.servers[ctx.message.server.id]["custom_commands"]["0"]
one = self.servers[ctx.message.server.id]["custom_commands"]["1"] one = self.servers[ctx.message.server.id]["custom_commands"]["1"]



Loading…
Cancel
Save