From 17c673c46bf3ad203eba73f9818933e307ded6d3 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Thu, 23 Jul 2009 20:30:37 +0000 Subject: Apply my previous two commits to trunk. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10390 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/spl-cast.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/spl-cast.cc') diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc index 2735db6f9a..8dfbd94993 100644 --- a/crawl-ref/source/spl-cast.cc +++ b/crawl-ref/source/spl-cast.cc @@ -2352,9 +2352,8 @@ std::string spell_range_string(spell_type spell) return "N/A"; else { - return std::string("@") + std::string(range, '.') - + "" + std::string(maxrange - range, '.') - + ""; + return std::string("@") + std::string(range - 1, '-') + + std::string(">") + std::string(maxrange - range, '.'); } } -- cgit v1.2.3-54-g00ecf