summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-27 04:07:59 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-03-27 04:07:59 +0000
commitaf65664e899482adf7b62b7d663fe5d1328868c2 (patch)
tree89417b589129a83c7bfadf3a75f7130d77da4191 /crawl-ref/source/delay.cc
parentd727d7501fa6f01efbc8a454bb94f96775cdd6fd (diff)
downloadcrawl-ref-af65664e899482adf7b62b7d663fe5d1328868c2.tar.gz
crawl-ref-af65664e899482adf7b62b7d663fe5d1328868c2.zip
Let Vampires continue bottling blood if reduced below level 6 mid-bottling
Since that should be impossible.
Diffstat (limited to 'crawl-ref/source/delay.cc')
-rw-r--r--crawl-ref/source/delay.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/crawl-ref/source/delay.cc b/crawl-ref/source/delay.cc
index a50d0f1d1f..d8554455c5 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -663,13 +663,6 @@ void handle_delay()
}
else if (delay.type == DELAY_BUTCHER || delay.type == DELAY_BOTTLE_BLOOD)
{
- if (delay.type == DELAY_BOTTLE_BLOOD && you.experience_level < 6)
- {
- mpr("You cannot bottle blood anymore!");
- stop_delay();
- return;
- }
-
// A monster may have raised the corpse you're chopping up! -- bwr
// Note that a monster could have raised the corpse and another
// monster could die and create a corpse with the same ID number...