summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/wiz-item.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/wiz-item.cc')
-rw-r--r--crawl-ref/source/wiz-item.cc10
1 files changed, 3 insertions, 7 deletions
diff --git a/crawl-ref/source/wiz-item.cc b/crawl-ref/source/wiz-item.cc
index 6fa4b411b0..56b1b9bba0 100644
--- a/crawl-ref/source/wiz-item.cc
+++ b/crawl-ref/source/wiz-item.cc
@@ -50,6 +50,9 @@ static void _make_all_books()
move_item_to_grid(&thing, you.pos());
+ if (thing == NON_ITEM)
+ continue;
+
item_def book(mitm[thing]);
mark_had_book(book);
@@ -819,13 +822,6 @@ void wizard_list_items()
//---------------------------------------------------------------
static void _debug_acquirement_stats(FILE *ostat)
{
- if (feat_destroys_items(grd(you.pos())))
- {
- mpr("You must stand on a square which doesn't destroy items "
- "in order to do this.");
- return;
- }
-
int p = get_item_slot(11);
if (p == NON_ITEM)
{