ID:272597
 
How would I be able to search a list and account for all objects? When I search through a list of objects, sometimes multiple objects of the same name aren't counted in the search. Why is that? I kind of need to be able to account for all the objects.
Basically put,
for(var/datum/D in List)
world << "Found [D]"

If you're having trouble with using this, you're probably having a Code Problem (don't create a new topic for it).
In response to Kaioken
I don't have a code problem example at this time, but when I search through say a deck of cards, it only comes up with somewhere between 23-29 of them out of the 40 that are there. I'm assuming it's because some of the "cards" in the list have the same name since they are the same type of object.