mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 12:23:09 +02:00
Merge pull request #48 from DerpyForks/master
Error if Node is not v12 or higher, fix eslint error etc
This commit is contained in:
commit
2dab2426d3
@ -43,14 +43,13 @@ module.exports = {
|
||||
.setColor(config.err_colour)
|
||||
.setAuthor(message.author.username, message.author.displayAvatarURL())
|
||||
.setTitle(':x: **No permission**')
|
||||
.setDescription(`You don't have permission to rename this channel as you are not staff.`)
|
||||
.setDescription('You don\'t have permission to rename this channel as you are not staff.')
|
||||
.addField('Usage', `\`${config.prefix}${this.name} ${this.usage}\`\n`)
|
||||
.addField('Help', `Type \`${config.prefix}help ${this.name}\` for more information`)
|
||||
.setFooter(guild.name, guild.iconURL())
|
||||
);
|
||||
|
||||
let newname = args.join(' ');
|
||||
message.channel.setName(newname);
|
||||
message.channel.setName(args.join(' ')); // new channel name
|
||||
|
||||
message.channel.send(
|
||||
new MessageEmbed()
|
||||
|
@ -3,7 +3,7 @@
|
||||
* @name DiscordTickets
|
||||
* @author eartharoid <contact@eartharoid.me>
|
||||
* @license GNU-GPLv3
|
||||
*
|
||||
*
|
||||
* DiscordTickets Copyright (C) 2020 Isaac "eartharoid" Saunders
|
||||
* This program comes with ABSOLUTELY NO WARRANTY.
|
||||
* This is free software, and you are welcome to redistribute it
|
||||
@ -11,12 +11,15 @@
|
||||
*
|
||||
*/
|
||||
|
||||
const version = Number(process.version.split('.')[0].replace('v', ''));
|
||||
if (!version === 12 || !version > 12) return console.log('Please upgrade to Node v12 or higher');
|
||||
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
let dev = fs.existsSync('user/dev.env') && fs.existsSync('user/dev.config.js');
|
||||
|
||||
require('dotenv').config({path: path.join('user/', dev ? 'dev.env' : '.env')});
|
||||
require('dotenv').config({ path: path.join('user/', dev ? 'dev.env' : '.env') });
|
||||
|
||||
module.exports.config = dev ? 'dev.config.js' : 'config.js';
|
||||
const config = require(path.join('../user/', module.exports.config));
|
||||
|
Loading…
Reference in New Issue
Block a user