diff --git a/modules/command.js b/modules/command.js index 49a51f4..6c6c118 100644 --- a/modules/command.js +++ b/modules/command.js @@ -69,7 +69,9 @@ var command = function(dbot) { dbot.commands[commandName](event); dbot.save(); } else { - event.reply(dbot.t('syntax_error')); + if(commandName !== '~') { + event.reply(dbot.t('syntax_error')); + } } } }