From 8956f6322958670d5fc3a2cc9d1329ed1079a21e Mon Sep 17 00:00:00 2001 From: Vexed Date: Mon, 31 Aug 2020 14:25:43 +0100 Subject: [PATCH] [Mod] Dots and properly capitalise Discord (#4377) --- redbot/cogs/mod/kickban.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/redbot/cogs/mod/kickban.py b/redbot/cogs/mod/kickban.py index 4dcd135be..e48fa29f2 100644 --- a/redbot/cogs/mod/kickban.py +++ b/redbot/cogs/mod/kickban.py @@ -79,7 +79,7 @@ class KickBanMixin(MixinMeta): "hierarchy." ) elif guild.me.top_role <= user.top_role or user == guild.owner: - return _("I cannot do that due to discord hierarchy rules.") + return _("I cannot do that due to Discord hierarchy rules.") elif not (0 <= days <= 7): return _("Invalid days. Must be between 0 and 7.") @@ -199,7 +199,7 @@ class KickBanMixin(MixinMeta): ) return elif ctx.guild.me.top_role <= user.top_role or user == ctx.guild.owner: - await ctx.send(_("I cannot do that due to discord hierarchy rules.")) + await ctx.send(_("I cannot do that due to Discord hierarchy rules.")) return audit_reason = get_audit_reason(author, reason) toggle = await self.config.guild(guild).dm_on_kickban() @@ -282,10 +282,10 @@ class KickBanMixin(MixinMeta): *, reason: str = None, ): - """Preemptively bans user(s) from the server + """Preemptively bans user(s) from the server. User IDs need to be provided in order to ban - using this command""" + using this command.""" banned = [] errors = {} upgrades = [] @@ -454,7 +454,7 @@ class KickBanMixin(MixinMeta): ) return elif guild.me.top_role <= user.top_role or user == guild.owner: - await ctx.send(_("I cannot do that due to discord hierarchy rules")) + await ctx.send(_("I cannot do that due to Discord hierarchy rules.")) return if days is None: