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

@@ -23,6 +23,8 @@ A simple Discord Bot used by me personally, written for fun.

######Bug FIxes
- 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

#### v1.2.0

+ 1
- 1
cogs/customcommands.py View File

@@ -45,7 +45,7 @@ class CustomCommands():
"Adds a custom command to the list of custom commands."
self.servers = self.con.load_config()
command = command.lower()
output = output.lower()
output = output
zero = self.servers[ctx.message.server.id]["custom_commands"]["0"]
one = self.servers[ctx.message.server.id]["custom_commands"]["1"]


Loading…
Cancel
Save