Skip to content

Commit 2d98287

Browse files
committed
Update forward.py
1 parent 8aad460 commit 2d98287

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

forward/forward.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -270,13 +270,13 @@ async def tpm(self, ctx, language, user: discord.Member, *, message: str):
270270
@commands.command()
271271
@commands.guild_only()
272272
@checks.guildowner()
273-
async def tblock(self, ctx, user: discord.Member, time: Optional[MuteTime] = None):
273+
async def tblock(self, ctx, user: discord.Member, time: Optional[MuteTime] = "5d"):
274274
"""Blocks a member from sending dms to the bot
275275
"""
276276
async with self.config.blocked() as blocked:
277277
userid = str(user.id)
278278
if userid not in blocked:
279-
duration = time.get("duration") if time else MuteTime().convert(argument="5d").get("duration")
279+
duration = time.get("duration")
280280
blocked[userid] = (datetime.now(timezone.utc) + duration).timestamp() # until
281281
await ctx.maybe_send_embed("Blocked <@{id}> from send messages to the bot until {until}.".format(id=userid, until=datetime.fromtimestamp(blocked[userid])))
282282
else:

0 commit comments

Comments
 (0)