Version 1.0.0-beta.2 #2

Merged
AstroGD merged 6 commits from dev into main 2022-11-24 23:30:25 +01:00
Showing only changes of commit 7be72df267 - Show all commits

View File

@ -3,6 +3,7 @@ import getDefaultEmbed, { getSuccessEmbed } from "../tools/defaultEmbeds";
import { database, GuildSetting } from "../data";
import { getGuildSetting } from "../tools/data";
import { getGuildChannel } from "../tools/discord";
import { Emoji } from "../tools/design";
const builder = new SlashCommandBuilder();
builder.setName("logchannel");
@ -57,7 +58,7 @@ const execute = async (interaction: ChatInputCommandInteraction) => {
if (guildSetting.notificationChannelID) {
const oldLogChannel = await getGuildChannel(guildSetting.id, guildSetting.notificationChannelID);
const embed = getDefaultEmbed();
embed.setTitle("Settings changed");
embed.setTitle(`${Emoji.SETTINGS} Settings changed`);
embed.setDescription(`Log channel has been switched to <#${channel.id}>`);
embed.addFields({
name: "This action was performed by",
@ -75,7 +76,7 @@ const execute = async (interaction: ChatInputCommandInteraction) => {
await database.getRepository(GuildSetting).save(guildSetting);
const embed = getDefaultEmbed();
embed.setTitle("Settings changed");
embed.setTitle(`${Emoji.SETTINGS} Settings changed`);
embed.setDescription("This channel has been set as the log channel");
embed.addFields({
name: "This action was performed by",