From a20d5dcb9fafd697dde58e4c20cce2d2ccee12b9 Mon Sep 17 00:00:00 2001 From: LucasB25 <50886682+LucasB25@users.noreply.github.com> Date: Thu, 29 Aug 2024 19:23:35 +0200 Subject: [PATCH] Update CreateInvite.ts Signed-off-by: LucasB25 <50886682+LucasB25@users.noreply.github.com> --- src/commands/dev/CreateInvite.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/dev/CreateInvite.ts b/src/commands/dev/CreateInvite.ts index 1187ed8e9..fc0bcdfd1 100644 --- a/src/commands/dev/CreateInvite.ts +++ b/src/commands/dev/CreateInvite.ts @@ -54,8 +54,8 @@ export default class CreateInvite extends Command { } const invite = await textChannel.createInvite({ - maxAge: 0, - maxUses: 1, + maxAge: 3600, + maxUses: 0, reason: `Requested by developer: ${ctx.author.username}`, });