summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index e7015ed3ba..c6e1171672 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -1195,7 +1195,7 @@ std::string item_def::name_aux(description_level_type desc,
buff << "pair of ";
// When asking for the base item name, randartism is ignored.
- if (is_random_artefact(*this) && !basename && !dbname)
+ if (is_artefact(*this) && !basename && !dbname)
{
buff << get_artefact_name(*this);
break;
@@ -1429,7 +1429,7 @@ std::string item_def::name_aux(description_level_type desc,
break;
}
- const bool is_randart = is_random_artefact(*this);
+ const bool is_randart = is_artefact(*this);
if (know_curse)
{
@@ -1647,7 +1647,7 @@ std::string item_def::name_aux(description_level_type desc,
// Disambiguation.
if (!terse && !basename && !dbname && know_type
- && !is_random_artefact(*this))
+ && !is_artefact(*this))
{
switch (this->base_type)
{