*/
public List<Item> getAllEquipped(final String name) {
final List<Item> result = new LinkedList<Item>();
for (final String slotName : Constants.CARRYING_SLOTS) {
final RPSlot slot = getSlot(slotName);
for (final RPObject object : slot) {
if (object instanceof Item) {
final Item item = (Item) object;
if (item.getName().equals(name)) {