summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.h
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-11-11 15:55:25 -0800
committerMatthew Cline <zelgadis@sourceforge.net>2009-11-11 15:55:25 -0800
commitbe10fc3e15688ced9a7e3ce841ede8d68fd85eaa (patch)
treea6c46eb93e16867988b19eaf0ccc6b63ea32ae2d /crawl-ref/source/religion.h
parent4aec7022c1bf74468442d6d71e34c832e271de03 (diff)
downloadcrawl-ref-be10fc3e15688ced9a7e3ce841ede8d68fd85eaa.tar.gz
crawl-ref-be10fc3e15688ced9a7e3ce841ede8d68fd85eaa.zip
religion: temple_god_list()
New function temple_god_list(), which returns a list of gods whose altars can appear in the main temple, overflow temples, and mini-temples.
Diffstat (limited to 'crawl-ref/source/religion.h')
-rw-r--r--crawl-ref/source/religion.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/religion.h b/crawl-ref/source/religion.h
index 82b1a5f731..5ecc6ce34c 100644
--- a/crawl-ref/source/religion.h
+++ b/crawl-ref/source/religion.h
@@ -134,4 +134,6 @@ void religion_turn_start();
void religion_turn_end();
int get_tension(god_type god = you.religion, bool count_travelling = true);
+
+std::vector<god_type> temple_god_list();
#endif