mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
Fixed grammatical mistake in allowlist_add. (#4748)
Changed:
await ctx.send(_("Users has been added to the allowlist."))
to:
await ctx.send(_("Users have been added to the allowlist."))
This commit is contained in:
parent
cc885090e6
commit
e23d21ec08
@ -2792,7 +2792,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic):
|
|||||||
uids = {getattr(user, "id", user) for user in users}
|
uids = {getattr(user, "id", user) for user in users}
|
||||||
await self.bot._whiteblacklist_cache.add_to_whitelist(None, uids)
|
await self.bot._whiteblacklist_cache.add_to_whitelist(None, uids)
|
||||||
if len(users) > 1:
|
if len(users) > 1:
|
||||||
await ctx.send(_("Users has been added to the allowlist."))
|
await ctx.send(_("Users have been added to the allowlist."))
|
||||||
else:
|
else:
|
||||||
await ctx.send(_("User has been added to the allowlist."))
|
await ctx.send(_("User has been added to the allowlist."))
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user