summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/player.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index d5953e4b40..1fe1580f8f 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -6514,7 +6514,10 @@ void player::put_to_sleep(int)
// Not all species can be put to sleep. Check holiness.
const mon_holy_type holy = holiness();
if (holy == MH_UNDEAD || holy == MH_NONLIVING)
+ {
+ mpr("You feel weary for a moment.");
return;
+ }
mpr("You fall asleep.");
stop_delay();