From 8a78afdcea14016d0471fe74cc66a943c8fd616a Mon Sep 17 00:00:00 2001 From: Darshan Shaligram Date: Sun, 10 Jan 2010 18:22:58 +0530 Subject: Remove resist slowing, increment tag major version. --- crawl-ref/source/output.cc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'crawl-ref/source/output.cc') diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc index 419e9ef3cf..7a55f02527 100644 --- a/crawl-ref/source/output.cc +++ b/crawl-ref/source/output.cc @@ -1837,7 +1837,6 @@ static std::vector _get_overview_resistances( || you.religion == GOD_ZIN && you.piety >= 150); const int rrott = (you.res_rotting() || you.religion == GOD_ZIN && you.piety >= 150); - const int rslow = wearing_amulet(AMU_RESIST_SLOW, calc_unid); snprintf(buf, sizeof buf, "%sRes.Fire : %s\n" @@ -1848,8 +1847,7 @@ static std::vector _get_overview_resistances( "%sSpirit.Shd: %s\n" "%sSust.Abil.: %s\n" "%sRes.Mut. : %s\n" - "%sRes.Rott. : %s\n" - "%sRes.Slow : %s\n", + "%sRes.Rott. : %s\n", _determine_colour_string(rfire, 3), itosym3(rfire), _determine_colour_string(rcold, 3), itosym3(rcold), _determine_colour_string(rlife, 3), itosym3(rlife), @@ -1858,8 +1856,7 @@ static std::vector _get_overview_resistances( _determine_colour_string(rspir, 1), itosym1(rspir), _determine_colour_string(rsust, 1), itosym1(rsust), _determine_colour_string(rmuta, 1), itosym1(rmuta), - _determine_colour_string(rrott, 1), itosym1(rrott), - _determine_colour_string(rslow, 1), itosym1(rslow)); + _determine_colour_string(rrott, 1), itosym1(rrott)); cols.add_formatted(0, buf, false); int saplevel = player_mutation_level(MUT_SAPROVOROUS); -- cgit v1.2.3-54-g00ecf