From 427654fc60ee1431690dfb6ea2917c84a7f0ef56 Mon Sep 17 00:00:00 2001 From: Max Isom Date: Tue, 14 Sep 2021 13:35:54 -0400 Subject: [PATCH] Use same logic for removing reactions when either animation is ongoing or animation is stopped --- src/utils/loading-message.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/loading-message.ts b/src/utils/loading-message.ts index 95c7a2f..f0f91c9 100644 --- a/src/utils/loading-message.ts +++ b/src/utils/loading-message.ts @@ -43,7 +43,7 @@ export default class { if (reactionToRemove) { // eslint-disable-next-line no-await-in-loop - await reactionToRemove.remove(); + await reactionToRemove.users.remove(this.msg.client.user!.id); } else { isRemoving = false; }