From faf6923e1c35b8f69905548467874a76a4c740bd Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Wed, 5 Oct 2016 18:45:08 +0200 Subject: Remove max_plev --- src/files.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/files.cc') diff --git a/src/files.cc b/src/files.cc index 91795af3..12c05345 100644 --- a/src/files.cc +++ b/src/files.cc @@ -1151,7 +1151,7 @@ static void display_player_middle(void) prt_lnum("Max Exp ", p_ptr->max_exp, 11, 28, TERM_L_GREEN); - if ((p_ptr->lev >= PY_MAX_LEVEL) || (p_ptr->lev >= max_plev)) + if (p_ptr->lev >= PY_MAX_LEVEL) { put_str("Exp to Adv.", 12, 28); c_put_str(TERM_L_GREEN, " *****", 12, 28 + 11); -- cgit v1.2.3