summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-22 02:26:39 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-22 02:26:39 +0000
commit27bfefb1e04af5ef980785fbfc5c91548dd51a51 (patch)
tree21815c88ead3e08a556273ee794cbb95e6958414 /crawl-ref/source/describe.cc
parenta6fa467deec581b1f0c1392e2658c7072c1a994d (diff)
downloadcrawl-ref-27bfefb1e04af5ef980785fbfc5c91548dd51a51.tar.gz
crawl-ref-27bfefb1e04af5ef980785fbfc5c91548dd51a51.zip
Give a different description of dancing weapons when examining an
actual monster versus looking it up via "?/". git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6035 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 06b7102088..9581b778c0 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2216,6 +2216,10 @@ void describe_monsters(monsters& mons)
description << getLongDescription("spectral thing");
break;
+ case MONS_DANCING_WEAPON:
+ // Already handled.
+ break;
+
case MONS_ROTTING_DEVIL:
if (player_can_smell())
{
@@ -2308,6 +2312,7 @@ void describe_monsters(monsters& mons)
symbol_suffix += symbol;
symbol_suffix += "_suffix";
description << getLongDescription(symbol_suffix);
+ description << getLongDescription(symbol_suffix + "_examine");
#if DEBUG_DIAGNOSTICS