mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
sussy help change
This commit is contained in:
parent
a348148fd7
commit
a15a529103
1 changed files with 4 additions and 10 deletions
|
@ -46,11 +46,8 @@ module.exports = {
|
||||||
function run() {
|
function run() {
|
||||||
let discordSupported;
|
let discordSupported;
|
||||||
let alias = command.name;
|
let alias = command.name;
|
||||||
if (typeof command.discordExecute === 'undefined') {
|
if (typeof command.discordExecute === 'undefined') discordSupported = 'false';
|
||||||
discordSupported = 'false';
|
else discordSupported = 'true';
|
||||||
} else {
|
|
||||||
discordSupported = 'true';
|
|
||||||
}
|
|
||||||
if (command.alias.toString() !== '') {
|
if (command.alias.toString() !== '') {
|
||||||
alias = command.alias.join(', ');
|
alias = command.alias.join(', ');
|
||||||
}
|
}
|
||||||
|
@ -90,11 +87,8 @@ module.exports = {
|
||||||
function run() {
|
function run() {
|
||||||
let discordSupported;
|
let discordSupported;
|
||||||
let alias = command.name;
|
let alias = command.name;
|
||||||
if (typeof command.discordExecute === 'undefined') {
|
if (typeof command.discordExecute === 'undefined') discordSupported = 'false';
|
||||||
discordSupported = 'false';
|
else discordSupported = 'true';
|
||||||
} else {
|
|
||||||
discordSupported = 'true';
|
|
||||||
}
|
|
||||||
if (command.alias.toString() !== '') {
|
if (command.alias.toString() !== '') {
|
||||||
alias = command.alias.join(', ');
|
alias = command.alias.join(', ');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue