From 2e9d3167cb99788bc3188a3a7a5443d649d53ddc Mon Sep 17 00:00:00 2001 From: "Ean Milligan (Bastion)" Date: Sat, 8 Apr 2023 04:28:08 -0400 Subject: [PATCH] fix comment wording --- src/buttons/live-event/alternateEvent.ts | 2 +- src/buttons/live-event/joinEvent.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/buttons/live-event/alternateEvent.ts b/src/buttons/live-event/alternateEvent.ts index f518468..9670936 100644 --- a/src/buttons/live-event/alternateEvent.ts +++ b/src/buttons/live-event/alternateEvent.ts @@ -11,7 +11,7 @@ export const execute = async (bot: Bot, interaction: Interaction) => { // Light Telemetry dbClient.execute(queries.callIncCnt('btn-altEvent')).catch((e) => utils.commonLoggers.dbError('alternateEvent.ts', 'call sproc INC_CNT on', e)); - // Add user to event + // Alternate user to event alternateMemberToEvent(bot, interaction, interaction.message.embeds[0], interaction.message.id, interaction.channelId, { id: interaction.member.id, name: interaction.member.user.username, diff --git a/src/buttons/live-event/joinEvent.ts b/src/buttons/live-event/joinEvent.ts index 0f77180..748e71d 100644 --- a/src/buttons/live-event/joinEvent.ts +++ b/src/buttons/live-event/joinEvent.ts @@ -14,7 +14,7 @@ export const execute = async (bot: Bot, interaction: Interaction) => { utils.commonLoggers.dbError('joinEvent.ts', 'call sproc INC_CNT on', e) ); - // Remove user from event + // Join user to event joinMemberToEvent(bot, interaction, interaction.message.embeds[0], interaction.message.id, interaction.channelId, { id: interaction.member.id, name: interaction.member.user.username,