last push
This commit is contained in:
+6
-1
@@ -10,4 +10,9 @@ exports.utils = {
|
||||
|
||||
//events
|
||||
const events = require("./modules/events").events
|
||||
exports.events = events
|
||||
exports.events = events
|
||||
|
||||
//actions
|
||||
const actions = require("./modules/actions").actions
|
||||
//comming soon
|
||||
//exports.actions = actions
|
||||
@@ -0,0 +1,7 @@
|
||||
//ACTIONS:
|
||||
|
||||
|
||||
//EXPORT ACTIONS:
|
||||
exports.actions = {
|
||||
|
||||
}
|
||||
+2
-3
@@ -245,14 +245,13 @@ exports.checker = async () => {
|
||||
//--------------------------|
|
||||
//--------------------------|
|
||||
|
||||
var configArray = ["bot_name","main_color","server_id","auth_token","main_adminroles","prefix","languagefile","credits","status","system","options","messages"]
|
||||
var configArray = ["main_color","server_id","auth_token","main_adminroles","prefix","languagefile","credits","status","system","options","messages"]
|
||||
configArray.forEach((item) => {
|
||||
if (config[item] == undefined){
|
||||
throw new Error("\n\nMAIN ERROR: the item '"+item+"' doesn't exist in config.json")
|
||||
}
|
||||
})
|
||||
|
||||
checkType(config.bot_name,"string","bot_name")
|
||||
|
||||
checkHexColor(config.main_color,"main_color")
|
||||
checkDiscord("serverid",config.server_id,"server_id")
|
||||
checkToken(config.auth_token)
|
||||
|
||||
Reference in New Issue
Block a user