summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-miscast.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2013-07-16 14:37:55 +0100
committerChris Campbell <chriscampbell89@gmail.com>2013-07-16 15:05:56 +0100
commitf0e8d29340a339432e4bae50843ce323c9a70696 (patch)
tree7e7f3fdea0ee7c6e6f81e835ee3a46d6d4afffa1 /crawl-ref/source/spl-miscast.cc
parentd1fab9126b299687e37e78475789b57ae382b2e3 (diff)
downloadcrawl-ref-f0e8d29340a339432e4bae50843ce323c9a70696.tar.gz
crawl-ref-f0e8d29340a339432e4bae50843ce323c9a70696.zip
Djinni, gargoyles, lava orcs (???) don't have hair
Probably.
Diffstat (limited to 'crawl-ref/source/spl-miscast.cc')
-rw-r--r--crawl-ref/source/spl-miscast.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-miscast.cc b/crawl-ref/source/spl-miscast.cc
index 29e125c18e..c9c9fc862c 100644
--- a/crawl-ref/source/spl-miscast.cc
+++ b/crawl-ref/source/spl-miscast.cc
@@ -761,7 +761,9 @@ static bool _has_hair(actor* target)
return (!form_changed_physiology() && you.species != SP_GHOUL
&& you.species != SP_OCTOPODE
- && you.species != SP_TENGU && !player_genus(GENPC_DRACONIAN));
+ && you.species != SP_TENGU && !player_genus(GENPC_DRACONIAN)
+ && you.species != SP_DJINNI && you.species != SP_GARGOYLE
+ && you.species != SP_LAVA_ORC);
}
static string _hair_str(actor* target, bool &plural)