summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-22 18:05:50 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-22 18:05:50 +0000
commit03d0dc004fc0e97aea58665ea1b09f61afbf34f4 (patch)
treefbb5427aa24920bb0d55bf527f8ca75ac838cead /crawl-ref/source/makeitem.cc
parent2f0b704c918d91c1fccbb040dd1a472491b56ea8 (diff)
downloadcrawl-ref-03d0dc004fc0e97aea58665ea1b09f61afbf34f4.tar.gz
crawl-ref-03d0dc004fc0e97aea58665ea1b09f61afbf34f4.zip
For consistency with branded missile weapons, make branded missiles "of
flame" and "of frost" rather than "of flame" and "of ice". git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8697 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/makeitem.cc')
-rw-r--r--crawl-ref/source/makeitem.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index 65e5547c75..29f9e8e6da 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -1677,7 +1677,7 @@ static special_missile_type _determine_missile_brand(const item_def& item,
if (temp_rand < 60)
rc = SPMSL_FLAME;
else if (temp_rand < 120)
- rc = SPMSL_ICE;
+ rc = SPMSL_FROST;
else if (temp_rand < 150)
rc = SPMSL_POISONED;
else