mirror of
https://github.com/LBRYFoundation/lbry-wunderbot.git
synced 2025-08-31 17:31:32 +00:00
fail silently if a command doesn't exist
because it most likely does now....
This commit is contained in:
parent
065facf799
commit
e5b39ccd8b
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ function checkMessageForCommand(msg, isEdit) {
|
||||||
msg.channel.send(msgTxt);
|
msg.channel.send(msgTxt);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
msg.channel.send(cmdTxt + ' not recognized as a command!').then(message => message.delete(10000));
|
//msg.channel.send(cmdTxt + ' not recognized as a command!').then(message => message.delete(10000));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
//message isn't a command or is from us
|
//message isn't a command or is from us
|
||||||
|
|
Loading…
Add table
Reference in a new issue