Skip to content

Commit

Permalink
fix: update message format and wording in goal and
Browse files Browse the repository at this point in the history
network
  • Loading branch information
dev-737 committed Nov 11, 2023
1 parent fd24a72 commit 751c2dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/InterChat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class InterChat extends SuperClient {

// send message to support server notifying of new guild
await goalChannel.send({
content: `${ctx.flushedEmoji} I've just joined ${ctx.guild.name}, which is now my **${guildCount}${ordinalSuffix}** guild! 🎉`,
content: `${ctx.flushedEmoji} I've just joined ${ctx.guild.name}, making it my **${guildCount}${ordinalSuffix}** guild! 🎉`,
embeds: [goalEmbed],
});
}
Expand Down
2 changes: 1 addition & 1 deletion src/managers/NetworkManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default class NetworkManager extends Factory {
(connection.profFilter ? message.censoredContent : message.content) +
// append the attachment url if there is one
`${attachment ? `\n${attachmentURL}` : ''}`,
username: `${message.author.username} from ${message.guild}`,
username: `@${message.author.username} ${message.guild}`,
avatarURL: message.author.displayAvatarURL(),
threadId: connection.parentId ? connection.channelId : undefined,
allowedMentions: { parse: [] },
Expand Down

0 comments on commit 751c2dd

Please sign in to comment.