diff options
-rw-r--r-- | src/lib/utils/BushConstants.ts | 4 | ||||
-rw-r--r-- | src/listeners/bush/supportThread.ts | 10 |
2 files changed, 6 insertions, 8 deletions
diff --git a/src/lib/utils/BushConstants.ts b/src/lib/utils/BushConstants.ts index f0f6324..8c3d27f 100644 --- a/src/lib/utils/BushConstants.ts +++ b/src/lib/utils/BushConstants.ts @@ -268,8 +268,8 @@ export class BushConstants { [GuildFeature.Banner]: { name: 'Banner', important: false, emoji: '<:banner:850786673150787614>', weight: 15 }, [GuildFeature.InviteSplash]: { name: 'Invite Splash', important: false, emoji: '<:inviteSplash:850786798246559754>', weight: 16 }, [GuildFeature.PrivateThreads]: { name: 'Private Threads', important: false, emoji: '<:privateThreads:869763711894700093>', weight: 17 }, - [GuildFeature.ThreeDayThreadArchive]: { name: 'Three Day Thread Archive', important: false, emoji: '<:threeDayThreadArchive:869767841652564008>', weight: 19 }, - [GuildFeature.SevenDayThreadArchive]: { name: 'Seven Day Thread Archive', important: false, emoji: '<:sevenDayThreadArchive:869767896123998288>', weight: 20 }, + THREE_DAY_THREAD_ARCHIVE: { name: 'Three Day Thread Archive', important: false, emoji: '<:threeDayThreadArchive:869767841652564008>', weight: 19 }, + SEVEN_DAY_THREAD_ARCHIVE: { name: 'Seven Day Thread Archive', important: false, emoji: '<:sevenDayThreadArchive:869767896123998288>', weight: 20 }, [GuildFeature.RoleIcons]: { name: 'Role Icons', important: false, emoji: '<:roleIcons:876993381929222175>', weight: 21 }, [GuildFeature.News]: { name: 'Announcement Channels', important: false, emoji: '<:announcementChannels:850790491796013067>', weight: 22 }, [GuildFeature.MemberVerificationGateEnabled]: { name: 'Membership Verification Gate', important: false, emoji: '<:memberVerificationGateEnabled:850786829984858212>', weight: 23 }, diff --git a/src/listeners/bush/supportThread.ts b/src/listeners/bush/supportThread.ts index 2eb8dc9..c3294ef 100644 --- a/src/listeners/bush/supportThread.ts +++ b/src/listeners/bush/supportThread.ts @@ -1,6 +1,5 @@ import { BushListener, BushTextChannel, type BushClientEvents } from '#lib'; import assert from 'assert'; -import { stripIndent } from 'common-tags'; import { EmbedBuilder, MessageType, PermissionFlagsBits } from 'discord.js'; export default class SupportThreadListener extends BushListener { @@ -44,11 +43,10 @@ export default class SupportThreadListener extends BushListener { const embed = new EmbedBuilder() .setTitle('NotEnoughUpdates Support') .setDescription( - stripIndent` - Welcome to Moulberry Bush Support:tm: - - Please make sure you have the latest version found in <#693586404256645231>. - Additionally if you need help installing the mod be sure to read <#737444942724726915> for a guide on how to do so.` + `Welcome to Moulberry Bush Support:tm: + +Please make sure you have the latest version found in <#693586404256645231>. +Additionally if you need help installing the mod be sure to read <#737444942724726915> for a guide on how to do so.` ) .setColor(util.colors.Blurple); void thread |