fix(command): 🐛 fix bot address regex returning undefined

Waits till spawn to make sure `bot.username` is definitely initialized
This commit is contained in:
jay
2021-03-23 23:10:58 +05:00
parent 72c4622091
commit 22490f7ec1
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -88,7 +88,6 @@ fs.watch('./lib/plugins', reloadplugin)
cfg.bot = bot
// TODO better name, or switch to array
cfg.botAddressPrefix = '!'
cfg.botAddressRegex = new RegExp(`^${bot.username} (${cfg.botAddressPrefix}.+)`)
cfg.quiet = true
@@ -110,6 +109,7 @@ bot.once("spawn", () => {
}
cfg.plugins = plugins
cfg.botAddressRegex = new RegExp(`^${bot.username} (${cfg.botAddressPrefix}.+)`)
for (const plugin of Object.values(plugins)) {
try {