module.exports = (lib) => { lib.trigger.add({ name: 'part', call: /^!part/i, level: 100, active: 1, func: (e) => { lib.bot.write("PART "+e.channel.getName()+" :f0ck you leatherman", e.network()); //lib.bot.part(e.channel.getName(), "f0ck you leatherman", e.network, () => { // lib.log('parted channel '+e.channel.getName()); //}); }, desc: 'parts channel' }); };