summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-11-19 21:16:34 +0100
committerBardur Arantsson <bardur@scientician.net>2016-12-22 14:41:45 +0100
commit33ab0c7749426684d044bd25da05526bf19de742 (patch)
tree7ab8945906923a131b59c3f5fddbb2b746733c20
parentf8298b525a99f371c614554685d83ad2056af416 (diff)
Reduce length of "light radius" object description message
-rw-r--r--src/object1.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object1.cc b/src/object1.cc
index ad82f20f..4c065b24 100644
--- a/src/object1.cc
+++ b/src/object1.cc
@@ -2629,7 +2629,7 @@ bool_ object_out_desc(object_type *o_ptr, FILE *fff, bool_ trim_down, bool_ wait
}
else
{
- text_out(format("It provides light (radius %d) forever. ", radius));
+ text_out(format("It provides light (radius %d). ", radius));
}
}
}