fix comment wording

This commit is contained in:
Ean Milligan (Bastion) 2023-04-08 04:28:08 -04:00
parent 2b31e7949e
commit 2e9d3167cb
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ export const execute = async (bot: Bot, interaction: Interaction) => {
// Light Telemetry // Light Telemetry
dbClient.execute(queries.callIncCnt('btn-altEvent')).catch((e) => utils.commonLoggers.dbError('alternateEvent.ts', 'call sproc INC_CNT on', e)); 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, { alternateMemberToEvent(bot, interaction, interaction.message.embeds[0], interaction.message.id, interaction.channelId, {
id: interaction.member.id, id: interaction.member.id,
name: interaction.member.user.username, name: interaction.member.user.username,

View File

@ -14,7 +14,7 @@ export const execute = async (bot: Bot, interaction: Interaction) => {
utils.commonLoggers.dbError('joinEvent.ts', 'call sproc INC_CNT on', e) 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, { joinMemberToEvent(bot, interaction, interaction.message.embeds[0], interaction.message.id, interaction.channelId, {
id: interaction.member.id, id: interaction.member.id,
name: interaction.member.user.username, name: interaction.member.user.username,