diff --git a/commands/admin/checkip.js b/commands/admin/checkip.js index 353c833..9bc3618 100644 --- a/commands/admin/checkip.js +++ b/commands/admin/checkip.js @@ -14,21 +14,7 @@ const {Command} = require('../../lib.js') { //Check administration privilege if(message.author.id != '186540961650835456') return; - - const nets = require('os').networkInterfaces(); - const results = {} - for (const name of Object.keys(nets)) - { - for (const net of nets[name]) - { - if (net.family === (typeof net.family === 'string' ? 'IPv4' : 4) && name=='wlp3s0') - { - if (!results[name]) results[name] = []; - results[name].push(net.address); - } - } - } - message.author.send(JSON.stringify(results)); + message.author.send(JSON.stringify(require('os').networkInterfaces())); } }module.exports = checkip;