diff --git a/modules/dent/dent.js b/modules/dent/dent.js index 311d9d0..fcbb8a4 100644 --- a/modules/dent/dent.js +++ b/modules/dent/dent.js @@ -59,7 +59,9 @@ var dent = function(dbot) { this.onLoad = function() { if(dbot.config.dent.dentQuotes === true && _.has(dbot.modules, 'quotes')) { dbot.api.command.addHook('~qadd', function(key, text) { - this.api.post(key + ': ' + text); + if(text.indexOf('~~') == -1) { + this.api.post(key + ': ' + text); + } }.bind(this)); } }.bind(this);