diff --git a/src/modules/status.js b/src/modules/status.js index f8cf6b9..e1946de 100644 --- a/src/modules/status.js +++ b/src/modules/status.js @@ -11,10 +11,12 @@ function setStatus() { .replace("%users%", hf.bot.users.size) .replace("%commands%", hf.commands.size); - hf.bot.editStatus("online", { - type: status.type, - name: `${text} | ${hf.config.prefix}help`, - }); + hf.bot.editStatus("online", [ + { + type: status.type, + name: `${text} | ${hf.config.prefix}help`, + }, + ]); } hf.bot.once("ready", setStatus);