summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-05-26 22:46:22 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-05-26 22:52:09 -0400
commit7cbbb8650108a31555b9c31ba26178330392b017 (patch)
tree9b9f47ec8401468d6e6602d6bf3846b1cf028d4d /crawl-ref/source/itemname.cc
parent0c5ebfc60d932d583ef0939c798f642ba3ca340c (diff)
downloadcrawl-ref-7cbbb8650108a31555b9c31ba26178330392b017.tar.gz
crawl-ref-7cbbb8650108a31555b9c31ba26178330392b017.zip
Debuggify old food (#8599).
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index d94f4e70eb..0ab9470e79 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -1589,7 +1589,9 @@ string item_def::name_aux(description_level_type desc, bool terse, bool ident,
else
buff << "chunk of flesh";
break;
- default: buff << "buggy food"; break;
+#if TAG_MAJOR_VERSION == 34
+ default: buff << "removed food"; break;
+#endif
}
break;