summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-11-27 00:24:13 -0800
committerMatthew Cline <zelgadis@sourceforge.net>2009-11-27 00:31:51 -0800
commit2eab9ba1136309e98afa1f64bc6c493b8a70401e (patch)
tree3edc814fbd73e633497635f35b62780c026866cd /crawl-ref
parent65f7bd4b121e4cae4fd30501fd4d81d0fe9381c4 (diff)
downloadcrawl-ref-2eab9ba1136309e98afa1f64bc6c493b8a70401e.tar.gz
crawl-ref-2eab9ba1136309e98afa1f64bc6c493b8a70401e.zip
Bug #51: Shopping list travel bug fix
Shopping list travel now always goes all the way to the shop.
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/shopping.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/shopping.cc b/crawl-ref/source/shopping.cc
index 9ae19ef18b..a956f52bd0 100644
--- a/crawl-ref/source/shopping.cc
+++ b/crawl-ref/source/shopping.cc
@@ -2598,7 +2598,7 @@ void ShoppingList::display()
continue;
}
- const travel_target lp(thing_pos(*thing), true);
+ const travel_target lp(thing_pos(*thing), false);
start_translevel_travel(lp);
break;
}