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,