summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transform.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-04-01 04:11:05 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-04-10 19:04:22 +0100
commit863e7eee2eac781ff42b57aa858849e85cf0ab52 (patch)
tree556e300bfbcec1cb1eb41f972256c45e80c8ca58 /crawl-ref/source/transform.cc
parent5872f4ebcde6b436655382d6a36b96b423323aba (diff)
downloadcrawl-ref-863e7eee2eac781ff42b57aa858849e85cf0ab52.tar.gz
crawl-ref-863e7eee2eac781ff42b57aa858849e85cf0ab52.zip
Let non-undead forms eat and drink normally
Eating limitations added nothing but complication, and potion restrictions were excessive for badforms that already had many significant restrictions.
Diffstat (limited to 'crawl-ref/source/transform.cc')
-rw-r--r--crawl-ref/source/transform.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/crawl-ref/source/transform.cc b/crawl-ref/source/transform.cc
index 33f6b48172..c10b2be7b8 100644
--- a/crawl-ref/source/transform.cc
+++ b/crawl-ref/source/transform.cc
@@ -1099,16 +1099,7 @@ bool transform(int pow, transformation_type which_trans, bool involuntary,
}
break;
- case TRAN_FUNGUS:
- // ignore hunger_state (but don't reset hunger)
- you.hunger_state = HS_SATIATED;
- set_redraw_status(REDRAW_HUNGER);
- break;
-
case TRAN_TREE:
- // ignore hunger_state (but don't reset hunger)
- you.hunger_state = HS_SATIATED;
- set_redraw_status(REDRAW_HUNGER);
mpr("Your roots penetrate the ground.");
if (you.duration[DUR_TELEPORT])
{
@@ -1160,12 +1151,6 @@ bool transform(int pow, transformation_type which_trans, bool involuntary,
}
break;
- case TRAN_WISP:
- // ignore hunger_state (but don't reset hunger)
- you.hunger_state = HS_SATIATED;
- set_redraw_status(REDRAW_HUNGER);
- break;
-
case TRAN_SHADOW:
drain_exp(true, 25, true);
if (you.invisible())