fix: use environment variables

This commit is contained in:
Isaac
2023-01-31 15:18:40 +00:00
parent 9e4f532ae8
commit bcf474cc1c
3 changed files with 2 additions and 4 deletions

View File

@@ -122,7 +122,7 @@ module.exports = class TicketsSlashCommand extends SlashCommand {
.setTitle(getMessage(`commands.slash.tickets.response.title.${ownOrOther}`, { displayName: member.displayName }))
.setFields(fields);
if (settings.archive && !client.config.overrides.disableArchives) {
if (settings.archive && process.env.OVERRIDE_ARCHIVE !== 'false') {
const transcriptCommand = client.application.commands.cache.find(c => c.name === 'transcript');
embed.setDescription(getMessage('commands.slash.tickets.response.description', { transcript: `</${transcriptCommand.name}:${transcriptCommand.id}>` }));
}