1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 08:20:59 -04:00

Remove pointless bold text

This commit is contained in:
toast-ts 2024-02-02 06:04:10 +11:00
parent bbf01dc7ba
commit ebb2b5e445

View File

@ -69,7 +69,7 @@ export class TagSystemSvc {
.setDescription(getTag.dataValues.message) .setDescription(getTag.dataValues.message)
]; ];
if (getTag.dataValues.embedFlag) return await interaction.reply({content: targetMsg, embeds: embedFormat, allowedMentions: {parse: ['users']}}); if (getTag.dataValues.embedFlag) return await interaction.reply({content: targetMsg, embeds: embedFormat, allowedMentions: {parse: ['users']}});
else return await interaction.reply({content: targetMsg+`\n**${getTag.dataValues.message}**\n╰ **${fetchUser.displayName}**`, allowedMentions: {parse: ['users']}}); else return await interaction.reply({content: targetMsg+`\n${getTag.dataValues.message}\n╰ **${fetchUser.displayName}**`, allowedMentions: {parse: ['users']}});
} }
async modifyTag(tagname:string, message:string) { async modifyTag(tagname:string, message:string) {
CacheServer.delete('tags'); CacheServer.delete('tags');