summaryrefslogtreecommitdiff
path: root/src/files.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-10-05 18:45:08 +0200
committerBardur Arantsson <bardur@scientician.net>2016-10-05 18:45:08 +0200
commitfaf6923e1c35b8f69905548467874a76a4c740bd (patch)
tree7636dcf123f3b45e9cd823194bca01837d3a3b68 /src/files.cc
parent35daca530fecc0b74dea0820941a273950c59bf2 (diff)
Remove max_plev
Diffstat (limited to 'src/files.cc')
-rw-r--r--src/files.cc2
1 files changed, 1 insertions, 1 deletions
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);