diff --git a/src/app/functions/bootloader.js b/src/app/functions/bootloader.js index 18e2ece..92f8c89 100644 --- a/src/app/functions/bootloader.js +++ b/src/app/functions/bootloader.js @@ -116,7 +116,7 @@ class BootLoader { }, prefix: { // The user's desired command prefix type: Sequelize.STRING, - defaultValue: "t/", + defaultValue: app.config.system.defaultPrefix, allowNull: false }, language: { // The user's desired languager @@ -182,11 +182,11 @@ class BootLoader { defaultValue: JSON.stringify({ "join": { "channel": null, - "msg": "test" + "msg": app.defaults.join.msg }, "leave": { "channel": null, - "msg": "test!!" + "msg": app.defaults.leave.msg } }, null, "\t"), allowNull: true @@ -329,4 +329,4 @@ class BootLoader { } -module.exports = BootLoader; \ No newline at end of file +module.exports = BootLoader;