Made the bot type when muting/unmuting command

pull/8/head
sgoudham 4 years ago
parent da65bf75e0
commit 3b332a4851

@ -274,7 +274,7 @@ class Moderation(Cog):
Mute Member(s) from Server
Multiple Members can be Muted At Once
"""
with ctx.typing():
# When no members are entered. Throw an error
if not len(members):
embed = Embed(description="Not Correct Syntax!"
@ -311,6 +311,8 @@ class Moderation(Cog):
"""
unmute = False
with ctx.typing():
# When no members are entered. Throw an error
if not len(members):
embed = Embed(description="Not Correct Syntax!"

Loading…
Cancel
Save