summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/makeitem.cc')
-rw-r--r--crawl-ref/source/makeitem.cc22
1 files changed, 1 insertions, 21 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index 3e39a602f4..9a3c06c5ee 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -2853,27 +2853,7 @@ int items(bool allow_uniques,
item.link = NON_ITEM;
}
else
- {
- coord_def itempos;
- bool found = false;
- for (int i = 0; i < 500 && !found; ++i)
- {
- itempos = random_in_bounds();
- const monster* mon = monster_at(itempos);
- found = grd(itempos) == DNGN_FLOOR
- && !map_masked(itempos, mapmask)
- // oklobs or statues are ok
- && (!mon || !mons_is_firewood(mon));
- }
- if (!found)
- {
- // Couldn't find a single good spot!
- destroy_item(p);
- return NON_ITEM;
- }
- move_item_to_grid(&p, itempos);
- }
-
+ die("dont_place is used outside dungeon.cc oops");
// Note that item might be invalidated now, since p could have changed.
ASSERT(mitm[p].is_valid());
return p;