|
|
|
@ -248,20 +248,17 @@ async def marry(ctx, member: discord.Member):
|
|
|
|
|
# Allows the bot to echo the dm's that it receives
|
|
|
|
|
@client.event
|
|
|
|
|
async def on_message(message):
|
|
|
|
|
if commands.is_owner():
|
|
|
|
|
channel = client.get_channel(663651584399507481)
|
|
|
|
|
else:
|
|
|
|
|
# Get the channel id of the channel it wants to push messages to
|
|
|
|
|
channel = client.get_channel(721449922838134876)
|
|
|
|
|
|
|
|
|
|
# If the channel that the message is sent in is private
|
|
|
|
|
# Checking if the message is not sent in server
|
|
|
|
|
if message.guild is None:
|
|
|
|
|
if message.author.id == 578919370697342977:
|
|
|
|
|
# Echo the message contents to the channel specified
|
|
|
|
|
# Checking if the owner is sending the message
|
|
|
|
|
if commands.is_owner():
|
|
|
|
|
# Send message to #general
|
|
|
|
|
channel = client.get_channel(663651584399507481)
|
|
|
|
|
await channel.send(message.content)
|
|
|
|
|
else:
|
|
|
|
|
# Do nothing
|
|
|
|
|
return
|
|
|
|
|
# Send message to #enso-chan~commands
|
|
|
|
|
channel = client.get_channel(721449922838134876)
|
|
|
|
|
await channel.send(message.content)
|
|
|
|
|
|
|
|
|
|
await client.process_commands(message)
|
|
|
|
|
|
|
|
|
|