From 4b6437c4aec62cc51bf08f4e8b0044ac3e5c4836 Mon Sep 17 00:00:00 2001 From: Dragory Date: Sat, 16 Feb 2019 16:43:59 +0200 Subject: [PATCH] ReactionRoles: increase reaction removal delay to avoid confusion --- src/plugins/ReactionRoles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/ReactionRoles.ts b/src/plugins/ReactionRoles.ts index bd1c04fa..6f216824 100644 --- a/src/plugins/ReactionRoles.ts +++ b/src/plugins/ReactionRoles.ts @@ -224,6 +224,6 @@ export class ReactionRolesPlugin extends ZeppelinPlugin { await msg.channel.removeMessageReaction(msg.id, reaction, userId).catch(noop); await sleep(250); }); - }, 2000); + }, 15 * 1000); } }