Skip to content

Commit

Permalink
/deploy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GDColon committed Oct 2, 2024
1 parent 373bb7a commit a926238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/slash/dev_deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async run(client, int, tools) {

let isPublic = int && !!int.options.get("global")?.value
let undeploy = int && !!int.options.get("undeploy")?.value
let targetServer = isPublic ? null : int.options.get("server_id")?.value
let targetServer = (!int || isPublic) ? null : int.options.get("server_id")?.value

let interactionList = []
if (!undeploy) client.commands.forEach(cmd => {
Expand Down

0 comments on commit a926238

Please sign in to comment.