summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-07-03 18:36:51 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-07-04 09:25:24 -0700
commitdaf29251ac5ce3681640f0726fc5a89878aaf6d8 (patch)
tree5c8006df2b4225b1130f82d98dbd2f9ce103730c /crawl-ref/source/items.cc
parent17bf3f41985eb554493439fcc55374eee91b5791 (diff)
downloadcrawl-ref-daf29251ac5ce3681640f0726fc5a89878aaf6d8.tar.gz
crawl-ref-daf29251ac5ce3681640f0726fc5a89878aaf6d8.zip
Export blood-rot time
Diffstat (limited to 'crawl-ref/source/items.cc')
-rw-r--r--crawl-ref/source/items.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index cccb342c21..2a3e0f5d8d 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -3743,7 +3743,7 @@ bool get_item_by_name(item_def *item, char* specs,
if (age <= 0)
age = -1;
else if (item->sub_type == POT_BLOOD)
- age += 500;
+ age += ROTTING_BLOOD;
init_stack_blood_potions(*item, age);
}