summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-16 18:58:05 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-16 18:58:05 +0000
commitb9231c6613788ace1d7adfde1a0e028b21fae993 (patch)
tree974c93e302c3137100526d0a4a9e9586687c2efc /crawl-ref/source/describe.cc
parentb8ba267261e0586c01fad1c5f280d1fd16cd44ca (diff)
downloadcrawl-ref-b9231c6613788ace1d7adfde1a0e028b21fae993.tar.gz
crawl-ref-b9231c6613788ace1d7adfde1a0e028b21fae993.zip
'DD' is now an alias for 'Dy'.
Clean up some corpse handling, add food_is_rotten() function instead of manually checking special < 100 everywhere. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3283 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index e6c6fb60e7..dd0b4928b4 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1553,7 +1553,7 @@ std::string get_item_description( const item_def &item, bool verbose,
if (you.mutation[MUT_SAPROVOROUS] < 3)
description << "It looks rather unpleasant. ";
- if (item.special < 100)
+ if (food_is_rotten(item))
{
if (you.mutation[MUT_SAPROVOROUS] == 3)
description << "It looks nice and ripe. ";