fix(informer): 🐛 convert array to string for chat
`bot.chat` only supports strings
This commit is contained in:
parent
69d0f5830d
commit
034f8d331a
|
@ -5,7 +5,7 @@ let mcData
|
|||
function info() {
|
||||
const block = bot.blockAtCursor()
|
||||
console.log(block)
|
||||
cfg.quiet || bot.chat([block.id, block.name])
|
||||
cfg.quiet || bot.chat([block.id, block.name].join(": "))
|
||||
}
|
||||
|
||||
const load = (config) => {
|
||||
|
|
Loading…
Reference in New Issue
Block a user