fix(informer): 🐛 use block.type instead of block.id

`block.id` is nonexistent when tested live
cover
jay 3 years ago
parent 034f8d331a
commit 96214ffe37
  1. 2
      lib/plugins/informer.js

@ -5,7 +5,7 @@ let mcData
function info() {
const block = bot.blockAtCursor()
console.log(block)
cfg.quiet || bot.chat([block.id, block.name].join(": "))
cfg.quiet || bot.chat([block.type, block.name].join(": "))
}
const load = (config) => {

Loading…
Cancel
Save