mirror of
https://github.com/TheLovinator1/discord-reminder-bot.git
synced 2025-11-04 18:09:48 +01:00
Add DMs to /remind list
This commit is contained in:
@@ -348,7 +348,7 @@ async def command_add(
|
||||
run_date=run_date,
|
||||
kwargs={
|
||||
"user_id": int(send_dm_to_user.id),
|
||||
"guild_id": int(ctx.guild_id),
|
||||
"guild_id": ctx.guild_id,
|
||||
"message": message_reason,
|
||||
},
|
||||
)
|
||||
@@ -570,7 +570,7 @@ async def remind_cron(
|
||||
jitter=jitter,
|
||||
kwargs={
|
||||
"user_id": int(send_dm_to_user.id),
|
||||
"guild_id": int(ctx.guild_id),
|
||||
"guild_id": ctx.guild_id,
|
||||
"message": message_reason,
|
||||
},
|
||||
)
|
||||
@@ -762,7 +762,7 @@ async def remind_interval(
|
||||
jitter=jitter,
|
||||
kwargs={
|
||||
"user_id": int(send_dm_to_user.id),
|
||||
"guild_id": int(ctx.guild_id),
|
||||
"guild_id": ctx.guild_id,
|
||||
"message": message_reason,
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user