mod_reswitched/pingmod: change wording

This commit is contained in:
Ave 2020-09-01 21:18:17 +03:00
parent ffb129770d
commit 2c967764c5
No known key found for this signature in database
GPG key ID: 398DD7BD03276F6D

View file

@ -11,7 +11,7 @@ class ModReswitched(Cog):
@commands.guild_only()
@commands.command(aliases=["pingmods", "summonmods"])
async def pingmod(self, ctx):
"""Pings mods, only use when there's an emergency and such."""
"""Pings mods, only use when there's an emergency."""
can_ping = any(r.id in config.pingmods_allow for r in ctx.author.roles)
if can_ping:
await ctx.send(
@ -19,7 +19,7 @@ class ModReswitched(Cog):
)
else:
await ctx.send(
f"{ctx.author.mention}: You need community to be able to ping the entire staff team, please pick an online staff member, check if they have the mod role, and ping them instead."
f"{ctx.author.mention}: You need the community role to be able to ping the entire mod team, please pick an online mod (not staff, please!), and ping them instead."
)
@commands.guild_only()