summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/describe.cc10
-rw-r--r--crawl-ref/source/traps.cc2
2 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 1ed2e3981d..4622e7907f 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1394,17 +1394,17 @@ static std::string describe_ammo( const item_def &item )
{
std::string how;
if (item.plus > -3)
- how = "a little";
+ how = "a little worn";
else if (item.plus > -5)
- how = "somewhat";
+ how = "slightly damaged";
else if (item.plus > -7)
- how = "very";
+ how = "damaged";
else
- how = "extremely";
+ how = "heavily frayed";
description += "It looks ";
description += how;
- description += " worn.";
+ description += ".";
}
else if (item.plus > 1)
description += "The net looks brand-new!";
diff --git a/crawl-ref/source/traps.cc b/crawl-ref/source/traps.cc
index 6f66889fbe..d0e4d629a4 100644
--- a/crawl-ref/source/traps.cc
+++ b/crawl-ref/source/traps.cc
@@ -672,7 +672,7 @@ void free_self_from_net()
}
int do_what = damage_or_escape_net(mitm[net].plus);
-#ifdef DEBUG
+#ifdef DEBUG_DIAGNOSTICS
mprf(MSGCH_DIAGNOSTICS, "net.plus: %d, ATTR_HELD: %d, do_what: %d",
mitm[net].plus, you.attribute[ATTR_HELD], do_what);
#endif