summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/mapdef.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mapdef.cc b/crawl-ref/source/mapdef.cc
index 5c110ac4f9..e20d29d8d2 100644
--- a/crawl-ref/source/mapdef.cc
+++ b/crawl-ref/source/mapdef.cc
@@ -3830,12 +3830,12 @@ item_spec item_list::parse_single_spec(std::string s)
if (s == "random" || s == "any" || s == "%")
return (result);
- if (s == "*")
+ if (s == "*" || s == "star_item")
{
result.level = ISPEC_GOOD;
return (result);
}
- else if (s == "|")
+ else if (s == "|" || s == "superb_item")
{
result.level = ISPEC_SUPERB;
return (result);