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() {
|
||||
let discordSupported;
|
||||
let alias = command.name;
|
||||
if (typeof command.discordExecute === 'undefined') {
|
||||
discordSupported = 'false';
|
||||
} else {
|
||||
discordSupported = 'true';
|
||||
}
|
||||
if (typeof command.discordExecute === 'undefined') discordSupported = 'false';
|
||||
else discordSupported = 'true';
|
||||
if (command.alias.toString() !== '') {
|
||||
alias = command.alias.join(', ');
|
||||
}
|
||||
|
@ -90,11 +87,8 @@ module.exports = {
|
|||
function run() {
|
||||
let discordSupported;
|
||||
let alias = command.name;
|
||||
if (typeof command.discordExecute === 'undefined') {
|
||||
discordSupported = 'false';
|
||||
} else {
|
||||
discordSupported = 'true';
|
||||
}
|
||||
if (typeof command.discordExecute === 'undefined') discordSupported = 'false';
|
||||
else discordSupported = 'true';
|
||||
if (command.alias.toString() !== '') {
|
||||
alias = command.alias.join(', ');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue