Clear guild commands on production

to avoid duplicates
This commit is contained in:
2023-05-31 21:38:34 +02:00
parent fc927aa664
commit 5a47d0695f

View File

@@ -18,6 +18,7 @@ module.exports = {
console.log("Registering commands...");
if(process.env.ENV === "production") {
await rest.put(Routes.applicationCommands(CLIENT_ID), {body: commands });
await rest.put(Routes.applicationGuildCommands(CLIENT_ID, process.env.GUILD_ID), {body: [] }); //Clear Guild commands on prod
console.log("Global commands registered");
} else {
await rest.put(Routes.applicationGuildCommands(CLIENT_ID, process.env.GUILD_ID), {body: commands });