summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transform.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2013-12-08 19:13:12 +0000
committerChris Campbell <chriscampbell89@gmail.com>2013-12-08 19:13:12 +0000
commit31fcc813e99d4bb1c5b0e5b17dba3179915e4767 (patch)
tree507605e2b44c57e78a2715c2ba0087237bfefe93 /crawl-ref/source/transform.cc
parent74b6bc213021c3dd87b300d49475d46637c84302 (diff)
downloadcrawl-ref-31fcc813e99d4bb1c5b0e5b17dba3179915e4767.tar.gz
crawl-ref-31fcc813e99d4bb1c5b0e5b17dba3179915e4767.zip
Don't give a message when a forced appendage transformation fails
Diffstat (limited to 'crawl-ref/source/transform.cc')
-rw-r--r--crawl-ref/source/transform.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/transform.cc b/crawl-ref/source/transform.cc
index 4c4a9849f1..027087514b 100644
--- a/crawl-ref/source/transform.cc
+++ b/crawl-ref/source/transform.cc
@@ -909,7 +909,8 @@ bool transform(int pow, transformation_type which_trans, bool involuntary,
mutation_type app = _beastly_appendage();
if (app == NUM_MUTATIONS)
{
- mpr("You have no appropriate body parts free.");
+ if (!involuntary)
+ mpr("You have no appropriate body parts free.");
return false;
}