We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/tools qr create
1 parent 64e4276 commit 336a01eCopy full SHA for 336a01e
src/commands/interactions/slash/tools/qr/create.ts
@@ -19,6 +19,7 @@ export class ToolsQrCreateCommand extends BaseInteractionCommandOption {
19
{
20
name: 'query',
21
description: 'QR Code\'s Content',
22
+ required: true,
23
value: Parameters.string({maxLength: 1248}),
24
},
25
src/commands/prefixed/tools/qr.create.ts
@@ -32,6 +32,6 @@ export default class QRCreateCommand extends BaseCommand<Formatter.Commands.Tool
32
}
33
34
async run(context: Command.Context, args: Formatter.Commands.ToolsQrCreate.CommandArgs) {
35
- return Formatter.Commands.ToolsQrScan.createMessage(context, args);
+ return Formatter.Commands.ToolsQrCreate.createMessage(context, args);
36
37
0 commit comments