summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mutation.cc
diff options
context:
space:
mode:
authorwheals <shm.mark@gmail.com>2014-02-12 18:59:28 -0500
committerShmuale Mark <shm.mark@gmail.com>2014-02-24 23:50:41 -0500
commit474977d740c070c7240df71e69437b8c955fe5b0 (patch)
treec29b2dadefb3b01367e3689c3ee35705edc25a53 /crawl-ref/source/mutation.cc
parent2228498b1c13e8181272757c7e3971bbce30689c (diff)
downloadcrawl-ref-474977d740c070c7240df71e69437b8c955fe5b0.tar.gz
crawl-ref-474977d740c070c7240df71e69437b8c955fe5b0.zip
Remove djinn.
Djinn games can't be started (hopefully including using the rcfile), and djinn code should be removed on save-compat bump. Also, schedule a few SE things to be removed.
Diffstat (limited to 'crawl-ref/source/mutation.cc')
-rw-r--r--crawl-ref/source/mutation.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index 30e74c9722..af12b304a2 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -522,6 +522,7 @@ string describe_mutations(bool center_title)
!form_keeps_mutations());
have_any = true;
break;
+#if TAG_MAJOR_VERSION == 34
case SP_DJINNI:
result += "You are immune to all types of fire, even holy and hellish.\n";
@@ -530,6 +531,7 @@ string describe_mutations(bool center_title)
result += "You have no legs.\n";
have_any = true;
break;
+#endif
case SP_LAVA_ORC:
{
@@ -1391,6 +1393,7 @@ bool physiology_mutation_conflict(mutation_type mutat)
return true;
}
}
+#if TAG_MAJOR_VERSION == 34
// Heat doesn't hurt fire, djinn don't care about hunger.
if (you.species == SP_DJINNI && (mutat == MUT_HEAT_RESISTANCE
@@ -1401,6 +1404,7 @@ bool physiology_mutation_conflict(mutation_type mutat)
{
return true;
}
+#endif
// Already immune.
if (you.species == SP_GARGOYLE && mutat == MUT_POISON_RESISTANCE)