forked from Supositware/Haha-Yes
Fix cooldown (Was set to 1 hour, supposed to be 24 hours)
This commit is contained in:
parent
7254a242db
commit
0c793d73a6
2 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue