aboutsummaryrefslogtreecommitdiff
path: root/commands/slowdown.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/slowdown.js')
-rw-r--r--commands/slowdown.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/slowdown.js b/commands/slowdown.js
index c9fc611..55e441b 100644
--- a/commands/slowdown.js
+++ b/commands/slowdown.js
@@ -1,7 +1,7 @@
/** **************************************
*
* Slowdown: Command for AleeBot
- * Copyright (C) 2017-2020 Alee Productions
+ * Copyright (C) 2017-2021 Alee Productions
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@ module.exports.run = async (client, message, args) => {
if (!message.member.permissions.has('MANAGE_CHANNELS')) return message.reply('It looks like that you don\'t have the permissions to slowdown channels.');
if (isNaN(args[0])) return message.reply('Please input a valid number to slowdown a channel.');
await message.channel.setRateLimitPerUser(args[0]);
- message.channel.send(`This channel has been ratelimited for ${args[0]} second(s).`);
+ message.channel.send(`This channel has been slowdown for ${args[0]} second(s).`);
};