change cooldowns for animal commands

This commit is contained in:
Lio Young 2021-05-16 02:11:37 +02:00
parent 858f4f500f
commit bb0d9372bb
No known key found for this signature in database
GPG Key ID: 789795A11879E169
6 changed files with 6 additions and 6 deletions

View File

@ -9,7 +9,7 @@ export = class Birb extends Command {
name: "bird",
description: "Show a Bird",
aliases: ["birbs", "birb", "birds"],
cooldown: 1,
cooldown: 2,
})
}

View File

@ -9,7 +9,7 @@ export = class Birb extends Command {
name: "birb",
description: "Show a Birb",
aliases: ["bird", 'birds'],
cooldown: 1,
cooldown: 2,
})
}

View File

@ -9,7 +9,7 @@ export = class Fox extends Command {
name: "fox",
description: "Show a Fox",
aliases: ["yip"],
cooldown: 1,
cooldown: 2,
})
}

View File

@ -9,7 +9,7 @@ export = class Hyena extends Command {
name: "hyena",
description: "Show a Hyena",
aliases: ["yeen"],
cooldown: 1,
cooldown: 2,
})
}

View File

@ -9,7 +9,7 @@ export = class Shibe extends Command {
name: "shibe",
description: "Show a Shibe",
aliases: ["shib"],
cooldown: 1,
cooldown: 2,
})
}

View File

@ -9,7 +9,7 @@ export = class Wolf extends Command {
name: "wolf",
description: "Show a Wolf",
aliases: ["awoo"],
cooldown: 1,
cooldown: 2,
})
}