summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-miscast.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-07-16 16:10:56 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-07-16 16:33:58 +0200
commit5caa1cca98d54763398a019eaff5ae2d6907675a (patch)
treed10d58bb24044743af83a9c1a4f10fbc16554bae /crawl-ref/source/spl-miscast.cc
parented3b67e99287a591f4501d4d82362d4bc81e16c1 (diff)
downloadcrawl-ref-5caa1cca98d54763398a019eaff5ae2d6907675a.tar.gz
crawl-ref-5caa1cca98d54763398a019eaff5ae2d6907675a.zip
Revert djinn not having hair.
I can't recall seeing a single depiction without facial hair of some kind. For example, while the first several hundred of google images include some bald ones, all who are bald have a beard instead.
Diffstat (limited to 'crawl-ref/source/spl-miscast.cc')
-rw-r--r--crawl-ref/source/spl-miscast.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/spl-miscast.cc b/crawl-ref/source/spl-miscast.cc
index 25ff7b1209..ef3ac2e5b3 100644
--- a/crawl-ref/source/spl-miscast.cc
+++ b/crawl-ref/source/spl-miscast.cc
@@ -764,8 +764,7 @@ 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_DJINNI && you.species != SP_GARGOYLE
- && you.species != SP_LAVA_ORC);
+ && you.species != SP_GARGOYLE && you.species != SP_LAVA_ORC);
}
static string _hair_str(actor* target, bool &plural)