chomens-bot-js/plugins/position.js

11 lines
274 B
JavaScript
Raw Normal View History

2022-08-14 05:51:45 -04:00
/* eslint-disable require-jsdoc */
2022-11-27 02:35:28 -05:00
function inject (bot) {
2022-08-14 05:51:45 -04:00
bot._client.on('position', (position) => {
2022-11-27 02:35:28 -05:00
bot.position = position
bot.write('teleport_confirm', { teleportId: position.teleportId })
bot.emit('position', position)
})
2022-08-14 05:51:45 -04:00
}
2022-11-27 02:35:28 -05:00
module.exports = { inject }