Servers now have server spesific prefixes

This commit is contained in:
plane000
2018-05-22 18:49:07 +01:00
parent c0529d5dab
commit 825e1611f5
6 changed files with 30 additions and 15 deletions

View File

@@ -23,6 +23,7 @@ module.exports.addServer = function(guild) {
servers[guild.id] = {
name: guild.name,
rules: ["Oh yeah, arrays start at 0"],
prefix: '+',
adminroles: []
}
}
@@ -31,13 +32,13 @@ module.exports.loadDefaults = function() {
config = {
Token: 'DISCORD_TOKEN',
NowPlaying: 'RealLife.exe',
Prefix: '+',
Version: '2.0.1',
};
servers['SERVER ID'] = {
name: 'SERVER NAME',
rules: ['RULE 0', 'RULE 1'],
prefix: '+',
adminroles: ['123456789101112', '123456789101112']
};
}