[Dev] server -> guild in dev commands

This commit is contained in:
Twentysix 2017-07-27 01:33:40 +02:00
parent be5c7f4592
commit b1601b1bf0

View File

@ -61,7 +61,7 @@ class Dev:
'ctx': ctx, 'ctx': ctx,
'channel': ctx.channel, 'channel': ctx.channel,
'author': ctx.author, 'author': ctx.author,
'server': ctx.guild, 'guild': ctx.guild,
'message': ctx.message 'message': ctx.message
} }
@ -102,7 +102,7 @@ class Dev:
'ctx': ctx, 'ctx': ctx,
'channel': ctx.channel, 'channel': ctx.channel,
'author': ctx.author, 'author': ctx.author,
'server': ctx.guild, 'guild': ctx.guild,
'message': ctx.message, 'message': ctx.message,
'_': self._last_result '_': self._last_result
} }
@ -152,7 +152,7 @@ class Dev:
'ctx': ctx, 'ctx': ctx,
'bot': ctx.bot, 'bot': ctx.bot,
'message': ctx.message, 'message': ctx.message,
'server': ctx.guild, 'guild': ctx.guild,
'channel': ctx.channel, 'channel': ctx.channel,
'author': ctx.author, 'author': ctx.author,
'_': None, '_': None,