summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/items.cc')
-rw-r--r--crawl-ref/source/items.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index eba72e9f7b..ff0731d68f 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -595,6 +595,7 @@ void lose_item_stack( int x, int y )
si->clear();
}
}
+ igrd[x][y] = NON_ITEM;
}
void destroy_item_stack( int x, int y, int cause )
@@ -607,6 +608,7 @@ void destroy_item_stack( int x, int y, int cause )
si->clear();
}
}
+ igrd[x][y] = NON_ITEM;
}
static bool _invisible_to_player( const item_def& item )