We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee313b7 commit d1cec02Copy full SHA for d1cec02
1 file changed
src/app/functions/bootloader.js
@@ -116,7 +116,7 @@ class BootLoader {
116
},
117
prefix: { // The user's desired command prefix
118
type: Sequelize.STRING,
119
- defaultValue: "t/",
+ defaultValue: app.config.system.defaultPrefix,
120
allowNull: false
121
122
language: { // The user's desired languager
@@ -182,11 +182,11 @@ class BootLoader {
182
defaultValue: JSON.stringify({
183
"join": {
184
"channel": null,
185
- "msg": "test"
+ "msg": app.defaults.join.msg
186
187
"leave": {
188
189
- "msg": "test!!"
+ "msg": app.defaults.leave.msg
190
}
191
}, null, "\t"),
192
allowNull: true
@@ -329,4 +329,4 @@ class BootLoader {
329
330
331
332
-module.exports = BootLoader;
+module.exports = BootLoader;
0 commit comments