forked from Supositware/Haha-Yes
remove thing related to tag and autoresponse
This commit is contained in:
parent
526bb9882e
commit
da2336036c
1 changed files with 0 additions and 19 deletions
|
@ -1,6 +1,5 @@
|
|||
const { Command } = require('discord-akairo');
|
||||
const { MessageEmbed } = require('discord.js');
|
||||
const reload = require('auto-reload');
|
||||
|
||||
class ServerCommand extends Command {
|
||||
constructor() {
|
||||
|
@ -17,22 +16,6 @@ class ServerCommand extends Command {
|
|||
}
|
||||
|
||||
async exec(message) {
|
||||
const autoresponse = reload('../../json/autoresponse.json');
|
||||
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 count;
|
||||
|
||||
try {
|
||||
const customresponse = require(`../../tag/${message.guild.id}.json`);
|
||||
count = Object.keys(customresponse).length;
|
||||
} catch (e) {
|
||||
count = 0;
|
||||
}
|
||||
|
||||
const addEmbed = new MessageEmbed()
|
||||
.setColor('#0099ff')
|
||||
.setTitle(message.guild.name)
|
||||
|
@ -44,8 +27,6 @@ class ServerCommand extends Command {
|
|||
.addBlankField()
|
||||
.addField('Date when guild created', message.guild.createdAt, true)
|
||||
.addField('Owner', message.guild.owner, true)
|
||||
.addField('Numbers of tag', count, true)
|
||||
.addField('Autoresponse in this channel', autoresponseStatus, true)
|
||||
.setTimestamp();
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue