From 216960f3e23fc86da7729f4f588e1b8d0271c6b9 Mon Sep 17 00:00:00 2001 From: Jan <26145882+imverum@users.noreply.github.com> Date: Sat, 13 Feb 2021 15:50:55 +0100 Subject: [PATCH] h --- commands/copypasta.js | 2 +- commands/stop.js | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/commands/copypasta.js b/commands/copypasta.js index 8ea44fd..12c495c 100644 --- a/commands/copypasta.js +++ b/commands/copypasta.js @@ -33,7 +33,7 @@ module.exports.run = async (message, args) => { this.copypastaing[message.channel.id] = true; sendLine(); - const interval = setInterval(sendLine, 1250); + const interval = setInterval(sendLine, 1500); const listener = shutEmitter.once('shut', cid => { if (cid == message.channel.id) { clearInterval(interval); diff --git a/commands/stop.js b/commands/stop.js index 3ea4d82..62c1414 100644 --- a/commands/stop.js +++ b/commands/stop.js @@ -3,11 +3,12 @@ const Discord = require('discord.js'); module.exports.meta = { name: 'stop', aliases: ['stfu', 'shut'], - staffOnly: false + staffOnly: false, + epicOnly: true } /** - * + * Kills -copypasta * @param {Discord.Message} message * @param {Array} args */