summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-mis.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-18 22:20:15 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-18 22:20:15 +0000
commit77025c5c65c95fce61d342d488b9cb4c9d51d25e (patch)
tree9ed4a6ad5b00172ffe2f20f659db99a901c7c1e1 /crawl-ref/source/spl-mis.cc
parent0bfa591f1e39901559b69b4721a7319ff8a5888c (diff)
downloadcrawl-ref-77025c5c65c95fce61d342d488b9cb4c9d51d25e.tar.gz
crawl-ref-77025c5c65c95fce61d342d488b9cb4c9d51d25e.zip
Fix missing parameter in delete_mutation() call (oops).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10285 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-mis.cc')
-rw-r--r--crawl-ref/source/spl-mis.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-mis.cc b/crawl-ref/source/spl-mis.cc
index b729adddec..f0541d1f28 100644
--- a/crawl-ref/source/spl-mis.cc
+++ b/crawl-ref/source/spl-mis.cc
@@ -1900,7 +1900,7 @@ void MiscastEffect::_transmutation(int severity)
if (target->atype() == ACT_PLAYER)
{
you_msg = "You feel very strange.";
- delete_mutation(RANDOM_MUTATION, true, false,
+ delete_mutation(RANDOM_MUTATION, true, false, false,
lethality_margin > 0);
}
_ouch(5 + random2avg(23, 2));