summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/spl-cast.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 1f81c690b8..611e227a68 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -213,12 +213,9 @@ static std::string _spell_extra_description(spell_type spell)
desc << std::setw(30) << spell_title(spell);
// spell power, spell range, hunger level, level
- const std::string power_colour = colour_to_str(spell_power_colour(spell));
const std::string rangestring = spell_range_string(spell);
- desc << '<' << power_colour << '>'
- << std::setw(14) << spell_power_string(spell)
- << "</" << power_colour << '>'
+ desc << std::setw(14) << spell_power_string(spell)
<< std::setw(16 + _string_tag_length(rangestring)) << rangestring
<< std::setw(12) << spell_hunger_string(spell)
<< spell_difficulty(spell);