move emojis out of config (easier to use)
This commit is contained in:
parent
69222b195b
commit
de47f3e14e
3 changed files with 12 additions and 8 deletions
7
bot/constants/emojis.json
Normal file
7
bot/constants/emojis.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"success": "<:success:466995111885144095>",
|
||||
"error": "<:error:466995152976871434>",
|
||||
"denied": "<:denied:466995195150336020>",
|
||||
"wait": "<:wait:467115775849922570>",
|
||||
"warning": "<:warning:701681841190600704>"
|
||||
}
|
|
@ -1 +1,5 @@
|
|||
exports.activities = require('./activities.json');
|
||||
module.exports = {
|
||||
activities: require('./activities.json'),
|
||||
colours: require('./colours.json'),
|
||||
emojis: require('./emojis.json')
|
||||
};
|
|
@ -16,10 +16,3 @@ lavalinkNodes:
|
|||
host: ''
|
||||
port:
|
||||
auth: ''
|
||||
|
||||
emoji:
|
||||
success: ''
|
||||
error: ''
|
||||
denied: ''
|
||||
wait: ''
|
||||
warning: ''
|
||||
|
|
Loading…
Reference in a new issue