@@ -100,10 +100,10 @@ async def setup(self, ctx):
100100 )
101101
102102 embed .add_field (
103- name = "Thanks for using the bot!" ,
103+ name = "Thanks for using our bot!" ,
104104 value = "If you like what you see, consider giving the "
105- "[repo a star](https://github.com/kyb3r/modmail) :star: or if you are "
106- "feeling generous, check us out on [Patreon](https://patreon.com/kyber)!" ,
105+ "[repo a star](https://github.com/kyb3r/modmail) :star: and if you are "
106+ "feeling extra generous, buy us coffee on [Patreon](https://patreon.com/kyber) :heart: !" ,
107107 )
108108
109109 embed .set_footer (text = f'Type "{ self .bot .prefix } help" for a complete list of commands.' )
@@ -115,8 +115,8 @@ async def setup(self, ctx):
115115 await self .bot .config .update ()
116116 await ctx .send (
117117 "**Successfully set up server.**\n "
118- "Consider setting permission levels "
119- "to give access to roles or users the ability to use Modmail.\n \n "
118+ "Consider setting permission levels to give access to roles "
119+ "or users the ability to use Modmail.\n \n "
120120 f"Type:\n - `{ self .bot .prefix } permissions` and `{ self .bot .prefix } permissions add` "
121121 "for more info on setting permissions.\n "
122122 f"- `{ self .bot .prefix } config help` for a list of available customizations."
@@ -162,7 +162,7 @@ async def snippet(self, ctx, *, name: str.lower = None):
162162 embed = discord .Embed (
163163 color = self .bot .error_color , description = "You dont have any snippets at the moment."
164164 )
165- embed .set_footer (text = f"Do { self .bot .prefix } help snippet for more commands." )
165+ embed .set_footer (text = f'Check " { self .bot .prefix } help snippet" to add a snippet.' )
166166 embed .set_author (name = "Snippets" , icon_url = ctx .guild .icon_url )
167167 return await ctx .send (embed = embed )
168168
@@ -211,7 +211,7 @@ async def snippet_add(self, ctx, name: str.lower, *, value: commands.clean_conte
211211 embed = discord .Embed (
212212 title = "Error" ,
213213 color = self .bot .error_color ,
214- description = f"An alias with the same name already exists: `{ name } `." ,
214+ description = f"An alias that shares the same name exists: `{ name } `." ,
215215 )
216216 return await ctx .send (embed = embed )
217217
@@ -397,15 +397,15 @@ async def notify(
397397 """
398398 Notify a user or role when the next thread message received.
399399
400- Once a thread message is received, `user_or_role` will only be pinged once.
400+ Once a thread message is received, `user_or_role` will be pinged once.
401401
402402 Leave `user_or_role` empty to notify yourself.
403403 `@here` and `@everyone` can be substituted with `here` and `everyone`.
404404 `user_or_role` may be a user ID, mention, name. role ID, mention, name, "everyone", or "here".
405405 """
406406 mention = self .parse_user_or_role (ctx , user_or_role )
407407 if mention is None :
408- raise commands .BadArgument (f"{ user_or_role } is not a valid role." )
408+ raise commands .BadArgument (f"{ user_or_role } is not a valid user or role." )
409409
410410 thread = ctx .thread
411411
@@ -482,7 +482,7 @@ async def subscribe(
482482 """
483483 mention = self .parse_user_or_role (ctx , user_or_role )
484484 if mention is None :
485- raise commands .BadArgument (f"{ user_or_role } is not a valid role." )
485+ raise commands .BadArgument (f"{ user_or_role } is not a valid user or role." )
486486
487487 thread = ctx .thread
488488
@@ -539,7 +539,7 @@ async def unsubscribe(
539539 await self .bot .config .update ()
540540 embed = discord .Embed (
541541 color = self .bot .main_color ,
542- description = f"{ mention } is now unsubscribed to this thread." ,
542+ description = f"{ mention } is now unsubscribed from this thread." ,
543543 )
544544 return await ctx .send (embed = embed )
545545
@@ -649,7 +649,7 @@ async def logs(self, ctx, *, user: User = None):
649649 )
650650 return await ctx .send (embed = embed )
651651
652- logs = reversed ([e for e in logs if not e ["open" ]])
652+ logs = reversed ([log for log in logs if not log ["open" ]])
653653
654654 embeds = self .format_log_embeds (logs , avatar_url = icon_url )
655655
@@ -678,7 +678,7 @@ async def logs_closed_by(self, ctx, *, user: User = None):
678678 if not embeds :
679679 embed = discord .Embed (
680680 color = self .bot .error_color ,
681- description = "No log entries have been found for that query" ,
681+ description = "No log entries have been found for that query. " ,
682682 )
683683 return await ctx .send (embed = embed )
684684
@@ -838,8 +838,8 @@ async def edit(self, ctx, message_id: Optional[int] = None, *, message: str):
838838 """
839839 Edit a message that was sent using the reply or anonreply command.
840840
841- If no `message_id` is provided, the
842- last message sent by a staff will be edited.
841+ If no `message_id` is provided,
842+ the last message sent by a staff will be edited.
843843 """
844844 thread = ctx .thread
845845
@@ -1037,7 +1037,7 @@ async def block(self, ctx, user: Optional[User] = None, *, after: UserFriendlyTi
10371037 elif after is None :
10381038 raise commands .MissingRequiredArgument (SimpleNamespace (name = "user" ))
10391039 else :
1040- raise commands .BadArgument (f'User "{ after .arg } " not found' )
1040+ raise commands .BadArgument (f'User "{ after .arg } " not found. ' )
10411041
10421042 mention = getattr (user , "mention" , f"`{ user .id } `" )
10431043
@@ -1069,8 +1069,8 @@ async def block(self, ctx, user: Optional[User] = None, *, after: UserFriendlyTi
10691069 old_reason = msg .strip ().rstrip ("." )
10701070 embed = discord .Embed (
10711071 title = "Success" ,
1072- description = f"{ mention } was previously blocked "
1073- f"{ old_reason } . \n { mention } is now blocked { reason } " ,
1072+ description = f"{ mention } was previously blocked { old_reason } . \n "
1073+ f"{ mention } is now blocked { reason } " ,
10741074 color = self .bot .main_color ,
10751075 )
10761076 else :
@@ -1116,14 +1116,14 @@ async def unblock(self, ctx, *, user: User = None):
11161116 reason = msg [16 :].strip ().rstrip ("." ) or "no reason"
11171117 embed = discord .Embed (
11181118 title = "Success" ,
1119- description = f"{ mention } was previously blocked internally "
1120- f"{ reason } . \n { mention } is no longer blocked." ,
1119+ description = f"{ mention } was previously blocked internally { reason } . \n "
1120+ f"{ mention } is no longer blocked." ,
11211121 color = self .bot .main_color ,
11221122 )
11231123 embed .set_footer (
11241124 text = "However, if the original system block reason still applies, "
1125- f"{ name } will be automatically blocked again. Use "
1126- f'"{ self .bot .prefix } blocked whitelist { user .id } " to whitelist the user.'
1125+ f"{ name } will be automatically blocked again. "
1126+ f'Use "{ self .bot .prefix } blocked whitelist { user .id } " to whitelist the user.'
11271127 )
11281128 else :
11291129 embed = discord .Embed (
@@ -1156,7 +1156,7 @@ async def delete(self, ctx, message_id: Optional[int] = None):
11561156 try :
11571157 message_id = int (message_id )
11581158 except ValueError :
1159- raise commands .BadArgument ("An integer message ID needs to be specified." )
1159+ raise commands .BadArgument ("A message ID needs to be specified." )
11601160
11611161 linked_message_id = await self .find_linked_message (ctx , message_id )
11621162
0 commit comments