summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-05-21 18:31:59 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-05-21 20:57:58 -0400
commit3aea5c34a3128f84cacb6893a9c940565e3aac03 (patch)
tree937c798e577983b5ba2b7bedac90fa46444de518 /crawl-ref/source/tags.cc
parent8e2e937ec566970cbdab560c9245b8366ba24709 (diff)
downloadcrawl-ref-3aea5c34a3128f84cacb6893a9c940565e3aac03.tar.gz
crawl-ref-3aea5c34a3128f84cacb6893a9c940565e3aac03.zip
Remove Ambrosia
Not removing DUR_AMBROSIA yet because ideas on ##crawl-dev such as giving the effect to !magic have been proposed. Once again, somebody might want to review my vault edits. I mostly replaced ambrosia with honeycombs.
Diffstat (limited to 'crawl-ref/source/tags.cc')
-rw-r--r--crawl-ref/source/tags.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index 8c9af4b3ba..e53e917f72 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -3699,8 +3699,11 @@ void unmarshallItem(reader &th, item_def &item)
if (item.base_type == OBJ_BOOKS && item.sub_type == BOOK_WAR_CHANTS)
item.sub_type = BOOK_BATTLE;
- if (item.base_type == OBJ_FOOD && item.sub_type == FOOD_ROYAL_JELLY)
+ if (item.base_type == OBJ_FOOD && (item.sub_type == FOOD_ROYAL_JELLY
+ || item.sub_type == FOOD_AMBROSIA))
+ {
item.sub_type = FOOD_HONEYCOMB;
+ }
}
#endif