@@ -27,7 +27,8 @@ async def setup(self, ctx):
2727 """Sets up a server for Modmail"""
2828 if self .bot .main_category :
2929 return await ctx .send (
30- f'{ self .bot .modmail_guild } is already set up.' )
30+ f'{ self .bot .modmail_guild } is already set up.'
31+ )
3132
3233 category = await self .bot .modmail_guild .create_category (
3334 name = 'Modmail' ,
@@ -40,15 +41,18 @@ async def setup(self, ctx):
4041 name = 'bot-logs' , category = category
4142 )
4243
43- await log_channel .edit (
44- topic = 'You can delete this channel '
45- 'if you set up your own log channel.'
44+ embed = discord .Embed (
45+ title = 'Friendly Reminder:' ,
46+ description = 'You may use the `config set log_channel_id '
47+ '<channel-id>` command to set up a custom log channel'
48+ ', then you can delete the default '
49+ f'{ log_channel .mention } channel.' ,
50+ color = discord .Color .blurple ()
4651 )
4752
48- await log_channel .send (
49- 'Use the `config set log_channel_id` '
50- 'command to set up a custom log channel.'
51- )
53+ embed .set_footer (text = f'Type "{ self .bot .prefix } help" '
54+ 'for a complete list of commands.' )
55+ await log_channel .send (embed = embed )
5256
5357 self .bot .config ['main_category_id' ] = category .id
5458 self .bot .config ['log_channel_id' ] = log_channel .id
0 commit comments