aboutsummaryrefslogtreecommitdiff
path: root/src/commands/tickets
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/tickets')
-rw-r--r--src/commands/tickets/ticket-!.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/commands/tickets/ticket-!.ts b/src/commands/tickets/ticket-!.ts
index 7751df1..6ec4093 100644
--- a/src/commands/tickets/ticket-!.ts
+++ b/src/commands/tickets/ticket-!.ts
@@ -29,10 +29,12 @@ export default class TicketCommand extends BushCommand {
slashOptions: Object.entries(ticketSubcommands).map(
([subcommand, options]) => ({ name: subcommand, ...options } as SlashOption)
),
- slash: true,
+ slash: false,
channel: 'guild',
clientPermissions: (m) => clientSendAndPermCheck(m),
- userPermissions: []
+ userPermissions: [],
+ ownerOnly: true,
+ hidden: true
});
}