summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/debug.cc5
-rw-r--r--crawl-ref/source/describe.cc2
-rw-r--r--crawl-ref/source/effects.cc2
3 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/debug.cc b/crawl-ref/source/debug.cc
index e7a72aad1a..e9712ea131 100644
--- a/crawl-ref/source/debug.cc
+++ b/crawl-ref/source/debug.cc
@@ -3307,11 +3307,12 @@ static void _debug_acquirement_stats(FILE *ostat)
if (is_artefact(item))
num_arts++;
+ else if (type == OBJ_ARMOUR) // Exclude artefacts when counting egos.
+ ego_quants[get_armour_ego_type(item)]++;
+ // Include artefacts for weapon brands.
if (type == OBJ_WEAPONS)
ego_quants[get_weapon_brand(item)]++;
- else if (type == OBJ_ARMOUR)
- ego_quants[get_armour_ego_type(item)]++;
destroy_item(item_index, true);
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 25047e2099..ca8c6e66b4 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1919,7 +1919,7 @@ std::string get_item_description( const item_def &item, bool verbose,
"$Damage rating: 7 Accuracy rating: +6 "
"Attack delay: 120%";
- description << "$$It falls into the 'staves' category.";
+ description << "$$It falls into the 'Staves' category.";
}
break;
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index 416f860d0b..dee0d8b925 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -663,7 +663,7 @@ bool lose_stat(unsigned char which_stat, unsigned char stat_loss, bool force,
// finish outputting message: {dlb}
msg += ".";
- mpr(msg.c_str());
+ mpr(msg.c_str(), statLowered ? MSGCH_WARN : MSGCH_PLAIN);
if (newValue < 1)
{