From b1601b1bf08f54153866238a74fdbed100107586 Mon Sep 17 00:00:00 2001 From: Twentysix Date: Thu, 27 Jul 2017 01:33:40 +0200 Subject: [PATCH] [Dev] server -> guild in dev commands --- core/dev_commands.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/dev_commands.py b/core/dev_commands.py index 7e26acb49..1d03dbf50 100644 --- a/core/dev_commands.py +++ b/core/dev_commands.py @@ -61,7 +61,7 @@ class Dev: 'ctx': ctx, 'channel': ctx.channel, 'author': ctx.author, - 'server': ctx.guild, + 'guild': ctx.guild, 'message': ctx.message } @@ -102,7 +102,7 @@ class Dev: 'ctx': ctx, 'channel': ctx.channel, 'author': ctx.author, - 'server': ctx.guild, + 'guild': ctx.guild, 'message': ctx.message, '_': self._last_result } @@ -152,7 +152,7 @@ class Dev: 'ctx': ctx, 'bot': ctx.bot, 'message': ctx.message, - 'server': ctx.guild, + 'guild': ctx.guild, 'channel': ctx.channel, 'author': ctx.author, '_': None,