summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mutation.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-18 22:45:49 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-18 22:45:49 +0000
commit25586f037e96b929a63ab34fe451d43b3823efef (patch)
tree1e8eaf7b27fdca74aa0f55a4a10f3729bd3540a7 /crawl-ref/source/mutation.h
parent77025c5c65c95fce61d342d488b9cb4c9d51d25e (diff)
downloadcrawl-ref-25586f037e96b929a63ab34fe451d43b3823efef.tar.gz
crawl-ref-25586f037e96b929a63ab34fe451d43b3823efef.zip
Ensure the the Helix card only removes bad mutations, and that Zin's
retribution only removes good mutations, by adding a parameter to delete_mutation() to disallow mismatches of random good and bad mutations. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10287 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mutation.h')
-rw-r--r--crawl-ref/source/mutation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mutation.h b/crawl-ref/source/mutation.h
index 0a1d3b082d..a538d01e68 100644
--- a/crawl-ref/source/mutation.h
+++ b/crawl-ref/source/mutation.h
@@ -45,7 +45,7 @@ formatted_string describe_mutations();
bool delete_mutation(mutation_type which_mutation, bool failMsg = true,
bool force_mutation = false, bool god_gift = false,
- bool non_fatal = false);
+ bool disallow_mismatch = false, bool non_fatal = false);
bool delete_all_mutations();