1module.exports = inject 2 3function inject (bot, { version }) { 4 const Particle = require('../particle')(bot.registry) 5 6 bot._client.on('world_particles', (packet) => { 7 bot.emit('particle', Particle.fromNetwork(packet)) 8 }) 9} 10 11