From 5d66ced3af630a94100a50f71224f6c7d1b2ef83 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 15 Dec 2009 17:33:52 -0600 Subject: Revert "Remove hard skill pool cutoff." This reverts commit c652cbec1739a628f87aedc4874c782429f8d7ce. This really needs more discussion; the current implementation isn't reallly reasonable --- crawl-ref/source/output.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/output.cc') diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc index 6513cc0b17..ccad9bd3d9 100644 --- a/crawl-ref/source/output.cc +++ b/crawl-ref/source/output.cc @@ -848,10 +848,9 @@ static bool _need_stats_printed() static short _get_exp_pool_colour(int pool) { - int cutoff = you.exp_pool_cutoff(); - if (pool < cutoff*3/4) + if (pool < MAX_EXP_POOL/2) return (HUD_VALUE_COLOUR); - else if (pool < cutoff) + else if (pool < MAX_EXP_POOL*3/4) return (YELLOW); else return (RED); -- cgit v1.2.3-54-g00ecf