10 lines
193 B
JavaScript
10 lines
193 B
JavaScript
|
module.exports = inject
|
||
|
|
||
|
function inject (bot) {
|
||
|
bot._client.on('title', (packet) => {
|
||
|
if (packet.action === 0 || packet.action === 1) {
|
||
|
bot.emit('title', packet.text)
|
||
|
}
|
||
|
})
|
||
|
}
|