summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/database.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/database.cc')
-rw-r--r--crawl-ref/source/database.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/crawl-ref/source/database.cc b/crawl-ref/source/database.cc
index 488ece7d42..1dbdacd279 100644
--- a/crawl-ref/source/database.cc
+++ b/crawl-ref/source/database.cc
@@ -719,14 +719,12 @@ std::vector<std::string> getAllFAQKeys()
std::string getFAQ_Question(const std::string &key)
{
-// mprf("Question key: %s", key.c_str());
return _query_database(FAQDB.get(), key, false, true);
}
std::string getFAQ_Answer(const std::string &question)
{
std::string key = "a" + question.substr(1, question.length()-1);
-// mprf("Answer key: %s", key.c_str());
return _query_database(FAQDB.get(), key, false, true);
}