@@ -125,7 +125,7 @@ async def timeout_add(
125
125
f"Attempted new roles: { timeout_roleset } " , exc_info = error
126
126
)
127
127
else :
128
- await ctx .message . add_reaction ( "✅" )
128
+ await ctx .tick ( )
129
129
130
130
# Send report to channel
131
131
if await self .config .guild (ctx .guild ).report ():
@@ -161,7 +161,7 @@ async def timeout_remove(self, ctx: commands.Context, user: discord.Member, reas
161
161
f"Attempted new roles: { user_roles } " , exc_info = error
162
162
)
163
163
else :
164
- await ctx .message . add_reaction ( "✅" )
164
+ await ctx .tick ( )
165
165
166
166
# Clear user's roles from config
167
167
await self .config .member (user ).clear ()
@@ -192,7 +192,7 @@ async def timeoutset_logchannel(self, ctx: commands.Context, channel: discord.Te
192
192
- `[p]timeoutset logchannel #mod-log`
193
193
"""
194
194
await self .config .guild (ctx .guild ).logchannel .set (channel .id )
195
- await ctx .message . add_reaction ( "✅" )
195
+ await ctx .tick ( )
196
196
197
197
@timeoutset .command (name = "report" , usage = "<enable|disable>" )
198
198
@checks .mod ()
@@ -215,7 +215,7 @@ async def timeoutset_report(self, ctx: commands.Context, choice: str):
215
215
if str .lower (choice ) == "enable" :
216
216
if log_channel :
217
217
await self .config .guild (ctx .guild ).report .set (True )
218
- await ctx .message . add_reaction ( "✅" )
218
+ await ctx .tick ( )
219
219
else :
220
220
await ctx .send (
221
221
"You must set the log channel before enabling reports.\n " +
@@ -224,7 +224,7 @@ async def timeoutset_report(self, ctx: commands.Context, choice: str):
224
224
225
225
elif str .lower (choice ) == "disable" :
226
226
await self .config .guild (ctx .guild ).report .set (False )
227
- await ctx .message . add_reaction ( "✅" )
227
+ await ctx .tick ( )
228
228
229
229
else :
230
230
await ctx .send ("Setting must be `enable` or `disable`." )
@@ -238,7 +238,7 @@ async def timeoutset_role(self, ctx: commands.Context, role: discord.Role):
238
238
- `[p]timeoutset role MyRole`
239
239
"""
240
240
await self .config .guild (ctx .guild ).timeoutrole .set (role .id )
241
- await ctx .message . add_reaction ( "✅" )
241
+ await ctx .tick ( )
242
242
243
243
@timeoutset .command (name = "list" , aliases = ["show" , "view" , "settings" ])
244
244
@checks .mod ()
0 commit comments