summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/goditem.h
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2010-05-05 08:56:11 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2010-05-05 08:56:11 -0500
commit197fd3bb109efe3c76decdcd886afffe5a9f4190 (patch)
tree4373765d4acd39938397ed4ed9fd005f6defd959 /crawl-ref/source/goditem.h
parentd55203acf3a8bec01e7463447d257e6a62bedc87 (diff)
downloadcrawl-ref-197fd3bb109efe3c76decdcd886afffe5a9f4190.tar.gz
crawl-ref-197fd3bb109efe3c76decdcd886afffe5a9f4190.zip
Fix part of Mantis 1494.
Mark items that could potentially haste the player as disapproved by Cheibriados.
Diffstat (limited to 'crawl-ref/source/goditem.h')
-rw-r--r--crawl-ref/source/goditem.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/goditem.h b/crawl-ref/source/goditem.h
index a64f864498..1a7ee15cb1 100644
--- a/crawl-ref/source/goditem.h
+++ b/crawl-ref/source/goditem.h
@@ -10,11 +10,12 @@ bool is_holy_item(const item_def& item);
bool is_potentially_unholy_item(const item_def& item);
bool is_unholy_item(const item_def& item);
bool is_potentially_evil_item(const item_def& item);
+bool is_corpse_violating_item(const item_def& item);
bool is_evil_item(const item_def& item);
bool is_unclean_item(const item_def& item);
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_corpse_violating_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);