Fix one more place that was using ANY_FREE.

develop
Alexander Gavrilov 2012-10-24 17:51:47 +04:00
parent 7b67df4b4e
commit cd852e2240
1 changed files with 1 additions and 1 deletions

@ -135,7 +135,7 @@ static command_result stockcheck(color_ostream &out, vector <string> & parameter
}
std::vector<df::item*> &items = world->items.other[items_other_id::ANY_FREE];
std::vector<df::item*> &items = world->items.other[items_other_id::IN_PLAY];
// Precompute a bitmask with the bad flags
df::item_flags bad_flags;