From 4577417e92b90945dc16779172b344b9d9927914 Mon Sep 17 00:00:00 2001 From: InsufiKoder <87572099+InsufiKoder@users.noreply.github.com> Date: Sat, 16 Sep 2023 12:26:03 +0300 Subject: [PATCH] make catfact global --- commands/fun/catfact.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/fun/catfact.js b/commands/fun/catfact.js index 92e90d4..659791c 100644 --- a/commands/fun/catfact.js +++ b/commands/fun/catfact.js @@ -6,7 +6,7 @@ module.exports = { data: new SlashCommandBuilder() .setName("catfact") .setDescription("Get a random cat fact"), - global: false, + global: true, async execute(interaction) { try { const response = await axios.get("https://catfact.ninja/fact");