浏览代码

fixed issue with custom commands always lowering output

tags/v1.3.0
roxie 6 年前
父节点
当前提交
c9fd75b0d0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      cogs/customcommands.py

+ 1
- 1
cogs/customcommands.py 查看文件

@@ -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"]


正在加载...
取消
保存