Fix cooldown (Was set to 1 hour, supposed to be 24 hours)

pull/1/head
Supositware 1 year ago
parent 7254a242db
commit 0c793d73a6

@ -25,7 +25,7 @@ export default {
.setRequired(false)),
category: 'fun',
ratelimit: 3,
cooldown: 3600,
cooldown: 86400,
async execute(interaction, args, client) {
const content = args.content;
const attachment = args.image;

@ -15,7 +15,7 @@ export default {
.setRequired(true)),
category: 'utility',
ratelimit: 5,
cooldown: 3600,
cooldown: 86400,
async execute(interaction, args) {
const url = args.url;
if (!await utils.stringIsAValidurl(url)) {

Loading…
Cancel
Save