chomens-bot-js/plugins/position.js
2022-12-01 20:05:09 +07:00

11 lines
312 B
JavaScript

/* eslint-disable require-jsdoc */
function inject (bot) {
bot.position = { x: 0, y: 0, z: 0 }
bot._client.on('position', (position) => {
bot.position = position
bot.write('teleport_confirm', { teleportId: position.teleportId })
bot.emit('position', position)
})
}
module.exports = { inject }