In my PI, I want to say
"If there is already this item on the floor, return'
How can I do this? For objects it is:

Code:
	if(c.absX == Objects.getObjectX() && c.absY == Objects.getObjectY() && Objects.getObjectId() > 0) {
		return;
	}
How would I do it for items?