Skip to content

Commit fcf207a

Browse files
committed
refactor(timeout): use tick method, not add_reaction
1 parent 982c02c commit fcf207a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

timeout/timeout.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ async def timeout_add(
125125
f"Attempted new roles: {timeout_roleset}", exc_info=error
126126
)
127127
else:
128-
await ctx.message.add_reaction("✅")
128+
await ctx.tick()
129129

130130
# Send report to channel
131131
if await self.config.guild(ctx.guild).report():
@@ -161,7 +161,7 @@ async def timeout_remove(self, ctx: commands.Context, user: discord.Member, reas
161161
f"Attempted new roles: {user_roles}", exc_info=error
162162
)
163163
else:
164-
await ctx.message.add_reaction("✅")
164+
await ctx.tick()
165165

166166
# Clear user's roles from config
167167
await self.config.member(user).clear()
@@ -192,7 +192,7 @@ async def timeoutset_logchannel(self, ctx: commands.Context, channel: discord.Te
192192
- `[p]timeoutset logchannel #mod-log`
193193
"""
194194
await self.config.guild(ctx.guild).logchannel.set(channel.id)
195-
await ctx.message.add_reaction("✅")
195+
await ctx.tick()
196196

197197
@timeoutset.command(name="report", usage="<enable|disable>")
198198
@checks.mod()
@@ -215,7 +215,7 @@ async def timeoutset_report(self, ctx: commands.Context, choice: str):
215215
if str.lower(choice) == "enable":
216216
if log_channel:
217217
await self.config.guild(ctx.guild).report.set(True)
218-
await ctx.message.add_reaction("✅")
218+
await ctx.tick()
219219
else:
220220
await ctx.send(
221221
"You must set the log channel before enabling reports.\n" +
@@ -224,7 +224,7 @@ async def timeoutset_report(self, ctx: commands.Context, choice: str):
224224

225225
elif str.lower(choice) == "disable":
226226
await self.config.guild(ctx.guild).report.set(False)
227-
await ctx.message.add_reaction("✅")
227+
await ctx.tick()
228228

229229
else:
230230
await ctx.send("Setting must be `enable` or `disable`.")
@@ -238,7 +238,7 @@ async def timeoutset_role(self, ctx: commands.Context, role: discord.Role):
238238
- `[p]timeoutset role MyRole`
239239
"""
240240
await self.config.guild(ctx.guild).timeoutrole.set(role.id)
241-
await ctx.message.add_reaction("✅")
241+
await ctx.tick()
242242

243243
@timeoutset.command(name="list", aliases=["show", "view", "settings"])
244244
@checks.mod()

0 commit comments

Comments
 (0)