From 9d972ccb0e3a98bf24150ca22f05f21ef598cbb5 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 29 Mar 2016 11:02:35 -0400 Subject: Updated verbly --- blessed.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'blessed.cpp') diff --git a/blessed.cpp b/blessed.cpp index f3d90c4..faac3f8 100644 --- a/blessed.cpp +++ b/blessed.cpp @@ -5,6 +5,7 @@ #include #include #include +#include int main(int argc, char** argv) { @@ -53,8 +54,8 @@ int main(int argc, char** argv) std::string exclamation; for (;;) { - verbly::verb v = database.verbs().random(true).limit(1).has_pronunciation(true).run().front(); - auto rhyms = database.nouns().rhymes_with(v).random(true).limit(1).not_derived_from(v).is_not_proper(true).run(); + verbly::verb v = database.verbs().random().limit(1).has_pronunciation().run().front(); + auto rhyms = database.nouns().rhymes_with(v).random().limit(1).is_not_proper().run(); if (!rhyms.empty()) { auto n = rhyms.front(); -- cgit 1.4.1