diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-05-28 12:43:42 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-05-28 12:43:42 -0400 |
commit | 31d339b46b9fc11e50a0cdbf53e937e575531efd (patch) | |
tree | 05148c87a0be4992ad41b1829f17ffb6b75f7a3c /src/listeners/bush | |
parent | e37904bdf74b2c21d97d4ceb89a2a38a74b08919 (diff) | |
download | tanzanite-31d339b46b9fc11e50a0cdbf53e937e575531efd.tar.gz tanzanite-31d339b46b9fc11e50a0cdbf53e937e575531efd.tar.bz2 tanzanite-31d339b46b9fc11e50a0cdbf53e937e575531efd.zip |
feat: custom stripIndent
Diffstat (limited to 'src/listeners/bush')
-rw-r--r-- | src/listeners/bush/supportThread.ts | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/listeners/bush/supportThread.ts b/src/listeners/bush/supportThread.ts index c3294ef..e809176 100644 --- a/src/listeners/bush/supportThread.ts +++ b/src/listeners/bush/supportThread.ts @@ -1,4 +1,5 @@ import { BushListener, BushTextChannel, type BushClientEvents } from '#lib'; +import { stripIndent } from '#tags'; import assert from 'assert'; import { EmbedBuilder, MessageType, PermissionFlagsBits } from 'discord.js'; @@ -43,10 +44,11 @@ export default class SupportThreadListener extends BushListener { const embed = new EmbedBuilder() .setTitle('NotEnoughUpdates Support') .setDescription( - `Welcome to Moulberry Bush Support:tm: + 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.` + 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 |