summaryrefslogtreecommitdiff
path: root/src/cmd4.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2017-06-13 18:24:42 +0200
committerBardur Arantsson <bardur@scientician.net>2017-06-13 18:24:42 +0200
commitbe427adc0203262e535faba9161c5336e19ffd77 (patch)
tree742b8ef5625d0ea303c803818e7f9f804983c2c1 /src/cmd4.cc
parent11041734794444255bcf4d5e9041bf3f13c14f2d (diff)
Remove "feet" display
Diffstat (limited to 'src/cmd4.cc')
-rw-r--r--src/cmd4.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/cmd4.cc b/src/cmd4.cc
index c4adab54..f7317cb1 100644
--- a/src/cmd4.cc
+++ b/src/cmd4.cc
@@ -3630,10 +3630,10 @@ static void do_cmd_knowledge_dungeons()
if (max_dlv[y])
{
/* Describe the recall depth */
- w.write(" {}{}: Level {} ({}')\n",
+ w.write(" {}{}: Level {}\n",
(p_ptr->recall_dungeon == y) ? '*' : ' ',
d_info[y].name,
- max_dlv[y], 50 * (max_dlv[y]));
+ max_dlv[y]);
}
}
@@ -3668,10 +3668,9 @@ void do_cmd_knowledge_towns()
if (!(town_info[town_idx].flags & (TOWN_KNOWN))) continue;
/* Describe the dungeon town */
- w.write(" {}: Level {} ({}')\n",
+ w.write(" {}: Level {}\n",
d_ptr->name,
- d_ptr->t_level[j],
- 50 * d_ptr->t_level[j]);
+ d_ptr->t_level[j]);
}
}