This commit is contained in:
Supositware 2019-01-02 22:36:29 +01:00
parent 7abc70a9af
commit f8e5f531d6

View file

@ -17,8 +17,11 @@ class StatsCommand extends Command {
async exec(message) {
const autoresponse = reload('../../json/autoresponse.json');
if (autoresponse[message.channel.id] == undefined)
var autoresponseStatus = 'disable';
let autoresponseStatus;
if (autoresponse[message.channel.id] == undefined || autoresponse[message.channel.id] == 'disable')
autoresponseStatus = 'disabled';
else if (autoresponse[message.channel.id] == 'enable')
autoresponseStatus = 'enabled';
let totalSeconds = (this.client.uptime / 1000);
let days = Math.floor(totalSeconds / 86400);