summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ouch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/ouch.cc')
-rw-r--r--crawl-ref/source/ouch.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/ouch.cc b/crawl-ref/source/ouch.cc
index 5fd554d40f..8a06b6357e 100644
--- a/crawl-ref/source/ouch.cc
+++ b/crawl-ref/source/ouch.cc
@@ -601,6 +601,13 @@ bool expose_player_to_element(beam_type flavour, int strength)
{
if (you.duration[DUR_CONDENSATION_SHIELD] > 0)
remove_condensation_shield();
+
+ if (you.mutation[MUT_ICEMAIL])
+ {
+ mpr("Your icy envelope dissipates!", MSGCH_DURATION);
+ you.duration[DUR_ICEMAIL_DEPLETED] = ICEMAIL_TIME;
+ you.redraw_armour_class = true;
+ }
}
if (strength <= 0)