summaryrefslogtreecommitdiff
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
parent11041734794444255bcf4d5e9041bf3f13c14f2d (diff)
Remove "feet" display
-rw-r--r--src/cmd2.cc4
-rw-r--r--src/cmd4.cc9
-rw-r--r--src/files.cc4
3 files changed, 8 insertions, 9 deletions
diff --git a/src/cmd2.cc b/src/cmd2.cc
index e3d7cafe..a348c221 100644
--- a/src/cmd2.cc
+++ b/src/cmd2.cc
@@ -3902,8 +3902,8 @@ void do_cmd_immovable_special()
/* Give some choices */
prt("(a) Teleport to a specific place.", 4, 5);
prt("(b) Fetch an item.", 5, 5);
- prt("(c) Go up 50'", 6, 5);
- prt("(d) Go down 50'", 7, 5);
+ prt("(c) Go up one level", 6, 5);
+ prt("(d) Go down one level", 7, 5);
/* Prompt */
prt("Command: ", 9, 0);
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]);
}
}
diff --git a/src/files.cc b/src/files.cc
index 81fdeeec..6b3de0f0 100644
--- a/src/files.cc
+++ b/src/files.cc
@@ -2691,9 +2691,9 @@ errr file_character(cptr name, bool_ full)
for (y = 1; y < static_cast<int>(d_info.size()); y++)
{
if (max_dlv[y])
- fprintf(fff, "\n %s: Level %d (%d')",
+ fprintf(fff, "\n %s: Level %d",
d_info[y].name.c_str(),
- max_dlv[y], 50 * (max_dlv[y]));
+ max_dlv[y]);
}
fprintf(fff, "\n");