summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.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/itemname.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/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 7eacf12918..354c8b54f5 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -1149,8 +1149,8 @@ std::string item_def::name_aux( description_level_type desc,
case SPMSL_FLAME:
buff << ((terse) ? " (flame)" : " of flame");
break;
- case SPMSL_ICE:
- buff << ((terse) ? " (ice)" : " of ice");
+ case SPMSL_FROST:
+ buff << ((terse) ? " (frost)" : " of frost");
break;
case SPMSL_NORMAL:
case SPMSL_POISONED: