summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/command.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index ea7739cf4e..fba62439ce 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -523,8 +523,8 @@ void list_weapons(void)
}
else if (slot == -1)
{
- wstring += "-) ";
- wstring += you.inv[slot].name(DESC_PLAIN);
+ wstring += " - ";
+ wstring += item->name(DESC_NOCAP_A);
wstring += " (empty)";
}
else