This commit is contained in:
Jan 2021-02-13 15:50:55 +01:00
parent 09bda53ece
commit 216960f3e2
2 changed files with 4 additions and 3 deletions

View file

@ -33,7 +33,7 @@ module.exports.run = async (message, args) => {
this.copypastaing[message.channel.id] = true; this.copypastaing[message.channel.id] = true;
sendLine(); sendLine();
const interval = setInterval(sendLine, 1250); const interval = setInterval(sendLine, 1500);
const listener = shutEmitter.once('shut', cid => { const listener = shutEmitter.once('shut', cid => {
if (cid == message.channel.id) { if (cid == message.channel.id) {
clearInterval(interval); clearInterval(interval);

View file

@ -3,11 +3,12 @@ const Discord = require('discord.js');
module.exports.meta = { module.exports.meta = {
name: 'stop', name: 'stop',
aliases: ['stfu', 'shut'], aliases: ['stfu', 'shut'],
staffOnly: false staffOnly: false,
epicOnly: true
} }
/** /**
* * Kills -copypasta
* @param {Discord.Message} message * @param {Discord.Message} message
* @param {Array<string>} args * @param {Array<string>} args
*/ */