LookAtMySuitBot/js/node_modules/mineflayer/lib/plugins/title.js

10 lines
193 B
JavaScript
Raw Normal View History

2023-12-24 20:08:39 -05:00
module.exports = inject
function inject (bot) {
bot._client.on('title', (packet) => {
if (packet.action === 0 || packet.action === 1) {
bot.emit('title', packet.text)
}
})
}