Open /components/com_jcomments/jcomments.ajax.php and replace code:
$query = "SELECT COUNT(*) "
. "\nFROM #__jcomments "
. "\nWHERE comment = '" . $db->getEscaped($comment->comment) . "'"
. "\n AND ip = '" . $db->getEscaped($comment->ip) . "'"
. "\n AND name = '" . $db->getEscaped($comment->name) . "'"
. "\n AND userid = '" . $comment->userid . "'"
. "\n AND object_id = " . $comment->object_id
. "\n AND parent = " . $comment->parent
. "\n AND object_group = '" . $db->getEscaped($comment->object_group) . "'"
. (JCommentsMultilingual::isEnabled() ? "\nAND lang = '" . JCommentsMultilingual::getLanguage() . "'" : "")
;
$db->setQuery($query);
$found = $db->loadResult();
with
$found = 0;
But this will decrease flood-protection on your site.