[V3] guild->server (#1529)

Mostly string renames
customcom now recognized {guild} and {server}
This commit is contained in:
bobloy
2018-04-16 15:32:51 -04:00
committed by palmtree5
parent 1bc650b0f9
commit 705d9b8238
7 changed files with 14 additions and 13 deletions

View File

@@ -292,7 +292,7 @@ class CustomCommands:
if not response:
await ctx.send(_(
"There are no custom commands in this guild."
"There are no custom commands in this server."
" Use `{}` to start adding some.").format(
"{}customcom add".format(ctx.prefix)
))
@@ -381,7 +381,8 @@ class CustomCommands:
"message": message,
"author": message.author,
"channel": message.channel,
"guild": message.guild
"guild": message.guild,
"server": message.guild
}
if result in objects:
return str(objects[result])