ReactionRoles: increase reaction removal delay to avoid confusion

This commit is contained in:
Dragory 2019-02-16 16:43:59 +02:00
parent 33f50a460b
commit 4b6437c4ae

View file

@ -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);
}
}