Skip to content

Commit

Permalink
Fixed post-copy sending to message reference channel instead of targe…
Browse files Browse the repository at this point in the history
…t channel
  • Loading branch information
paranox committed Oct 6, 2024
1 parent f5a372a commit d0694f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mybot.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ async def post_copy(self, ctx, channel, message_reference):
return

text = message.content
await message.channel.send(text)
await channel.send(text)

async def midnight_winners_command(self, ctx):
with self.connection_pool.get_connection() as conn:
Expand Down

0 comments on commit d0694f1

Please sign in to comment.