summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/wiz-dgn.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-05-02 12:02:35 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-05-02 12:02:35 +0200
commit77090aa54955dddf4129704cead2feeb1bee70ba (patch)
tree61d6a3e87615e0bc656f5aed57a8dde20f44c7ae /crawl-ref/source/wiz-dgn.cc
parent4f6fd54bcfa43bbc5bfcd6161cd9f88e04f28ded (diff)
downloadcrawl-ref-77090aa54955dddf4129704cead2feeb1bee70ba.tar.gz
crawl-ref-77090aa54955dddf4129704cead2feeb1bee70ba.zip
Don't list parentless branches on &:
There's nothing interesting on that display anymore.
Diffstat (limited to 'crawl-ref/source/wiz-dgn.cc')
-rw-r--r--crawl-ref/source/wiz-dgn.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/wiz-dgn.cc b/crawl-ref/source/wiz-dgn.cc
index d0e290eba7..2f1d060eb9 100644
--- a/crawl-ref/source/wiz-dgn.cc
+++ b/crawl-ref/source/wiz-dgn.cc
@@ -331,10 +331,7 @@ void wizard_list_branches()
for (int i = 0; i < NUM_BRANCHES; ++i)
{
if (branches[i].parent_branch == NUM_BRANCHES)
- {
- mprf(MSGCH_DIAGNOSTICS, "Branch %d (%s) has a base depth of %d",
- i, branches[i].longname, startdepth[i]);
- }
+ continue;
else if (startdepth[i] != -1)
{
mprf(MSGCH_DIAGNOSTICS, "Branch %d (%s) is on level %d of %s",