From 37a46d82f0d3911431b6304b4c570a972bb2b575 Mon Sep 17 00:00:00 2001 From: "Ean Milligan (Bastion)" Date: Thu, 23 Mar 2023 15:49:43 -0400 Subject: [PATCH] Fixes member count parsing and error handling, start adding finalize step --- src/buttons/_index.ts | 3 +- .../event-creation/step1-gameSelection.ts | 22 ++++++++---- .../step1b-verifyCustomActivity.ts | 14 ++++---- src/buttons/event-creation/step2-finalize.ts | 36 +++++++++++++++++++ 4 files changed, 60 insertions(+), 15 deletions(-) create mode 100644 src/buttons/event-creation/step2-finalize.ts diff --git a/src/buttons/_index.ts b/src/buttons/_index.ts index 94bd22e..246e34e 100644 --- a/src/buttons/_index.ts +++ b/src/buttons/_index.ts @@ -2,5 +2,6 @@ import { Button } from '../types/commandTypes.ts'; import { createEventButton } from './event-creation/step1-gameSelection.ts'; import { createCustomEventButton } from './event-creation/step1a-openCustomModal.ts'; import { verifyCustomEventButton } from './event-creation/step1b-verifyCustomActivity.ts'; +import { finalizeEventButton } from './event-creation/step2-finalize.ts'; -export const buttons: Array