Skip to content

Commit 2fc90b8

Browse files
committed
DOnt send the user a notifying message when contacting
1 parent 7a2174c commit 2fc90b8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

core/thread.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,10 +207,8 @@ async def create(self, recipient, *, creator=None):
207207
color=discord.Color.green()
208208
)
209209

210-
if creator is not None:
211-
em.description = f'{creator.mention} has started a modmail thread with you.'
212-
213-
asyncio.create_task(recipient.send(embed=em))
210+
if creator is None:
211+
asyncio.create_task(recipient.send(embed=em))
214212

215213
self.cache[recipient.id] = thread = Thread(self, recipient)
216214

0 commit comments

Comments
 (0)