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