Skip to content

Commit

Permalink
Resolves #30
Browse files Browse the repository at this point in the history
  • Loading branch information
TecEash1 committed Apr 29, 2024
1 parent f674ced commit 1492306
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,13 +196,13 @@ const commandJsonData = [
...Array.from(client.slashCommands.values()).map((c) => {
const commandData =
c.data instanceof SlashCommandBuilder ? c.data.toJSON() : c.data;
commandData.integration_types = [1];
commandData.integration_types = [0, 1];
commandData.contexts = [0, 1, 2];
return commandData;
}),
...Array.from(client.contextCommands.values()).map((c) => {
const commandData = c.data;
commandData.integration_types = [1];
commandData.integration_types = [0, 1];
commandData.contexts = [0, 1, 2];
return commandData;
}),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "taurus",
"version": "3.3",
"version": "3.4",
"description": "An AI Discord Bot!",
"types": "./typings.d.ts",
"main": "bot.js",
Expand Down

0 comments on commit 1492306

Please sign in to comment.