summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/goditem.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-03-08 02:54:54 +0100
committerAdam Borowski <kilobyte@angband.pl>2012-03-08 17:49:53 +0100
commitc231b49e0d2ccb9c2adb01cefa3bf64bf75d644d (patch)
treea6cec0d861d9252f78a0e8c8c2b65515b7ccce30 /crawl-ref/source/goditem.h
parent6c938707811eee23d064689f9a9ab1ad5bbc110b (diff)
downloadcrawl-ref-c231b49e0d2ccb9c2adb01cefa3bf64bf75d644d.tar.gz
crawl-ref-c231b49e0d2ccb9c2adb01cefa3bf64bf75d644d.zip
Remove the Holy spell school.
It has been gone for players since forever, has no effect on monsters except for a redundant check, needs to be kludged around to exclude.
Diffstat (limited to 'crawl-ref/source/goditem.h')
-rw-r--r--crawl-ref/source/goditem.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/crawl-ref/source/goditem.h b/crawl-ref/source/goditem.h
index 0b2814794b..895b5b87a4 100644
--- a/crawl-ref/source/goditem.h
+++ b/crawl-ref/source/goditem.h
@@ -17,9 +17,7 @@ bool is_chaotic_item(const item_def& item);
bool is_potentially_hasty_item(const item_def& item);
bool is_hasty_item(const item_def& item);
bool is_poisoned_item(const item_def& item);
-bool is_holy_discipline(int discipline);
bool is_evil_discipline(int discipline);
-bool is_holy_spell(spell_type spell, god_type god = GOD_NO_GOD);
bool is_unholy_spell(spell_type spell, god_type god = GOD_NO_GOD);
bool is_corpse_violating_spell(spell_type spell, god_type = GOD_NO_GOD);
bool is_evil_spell(spell_type spell, god_type god = GOD_NO_GOD);
@@ -31,7 +29,6 @@ bool is_spellbook_type(const item_def& item, bool book_or_rod,
bool (*suitable)(spell_type spell, god_type god) =
is_any_spell,
god_type god = you.religion);
-bool is_holy_spellbook(const item_def& item);
bool is_unholy_spellbook(const item_def& item);
bool is_evil_spellbook(const item_def& item);
bool is_unclean_spellbook(const item_def& item);
@@ -39,7 +36,6 @@ bool is_chaotic_spellbook(const item_def& item);
bool is_hasty_spellbook(const item_def& item);
bool is_corpse_violating_spellbook(const item_def & item);
bool god_hates_spellbook(const item_def& item);
-bool is_holy_rod(const item_def& item);
bool is_unholy_rod(const item_def& item);
bool is_evil_rod(const item_def& item);
bool is_unclean_rod(const item_def& item);