summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc21
1 files changed, 0 insertions, 21 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 19b8758dd2..7af59e3b10 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -7038,27 +7038,6 @@ bool player::can_throw_large_rocks() const
return (player_genus(GENPC_OGRE) || species == SP_TROLL);
}
-bool player::can_hibernate(bool holi_only) const
-{
- // Undead, nonliving, and plants don't sleep.
- const mon_holy_type holi = holiness();
- if (holi == MH_UNDEAD || holi == MH_NONLIVING || holi == MH_PLANT)
- return (false);
-
- if (!holi_only)
- {
- // The player is berserk or already asleep.
- if (berserk() || asleep())
- return (false);
-
- // The player is cold-resistant and can't be hibernated.
- if (res_cold() > 0)
- return (false);
- }
-
- return (true);
-}
-
void player::hibernate(int)
{
ASSERT(!crawl_state.arena);