diff --git a/main.js b/main.js index 689a11d..216bf4d 100644 --- a/main.js +++ b/main.js @@ -20,7 +20,7 @@ const settings = require('./resources/settings.json') const { default: axios } = require('axios'); // fetch settings from the API -const SETTINGS_PATH = path.join(path.join(process.cwd(), 'resources/'), 'settings.json') +const SETTINGS_PATH = path.join(process.cwd(), 'resources/', 'settings.json') if(!process.env.NO_REFRESH || process.env.NO_REFRESH !== 'true') { const fetchSettings = () => { diff --git a/resources/colors.js b/resources/colors.js deleted file mode 100644 index d06a0ff..0000000 --- a/resources/colors.js +++ /dev/null @@ -1,30 +0,0 @@ -const RED = '#f44336' //negative -const YELLOW = '#FFEB3B' //warning -const BLUE = '#919AB1' -//const BLUE = '#7289DA' //for Project Blurple -const BLACK = '#000000' //muted -const COUNCIL = '#9c3848' //crimson -const GREEN = '#4CAF50' //positive - -const C32 = '#76C945' -const C64 = C32 -const CADDONS = '#6D6163' -const CTWEAKS = '#658430' -const CMODS = '#349687' -const CDUNGEONS = '#DF7C2B' - -module.exports = { - RED, - GREEN, - YELLOW, - BLUE, - BLACK, - COUNCIL, - - C32, - C64, - CADDONS, - CTWEAKS, - CMODS, - CDUNGEONS -} \ No newline at end of file