Fix so the most recent edition with art appears in ItemManagers

This commit is contained in:
drdev
2014-10-16 18:48:33 +00:00
parent 1859fd1c4f
commit 08d714f635

View File

@@ -19,6 +19,7 @@ package forge.util;
import com.google.common.base.Function;
import com.google.common.base.Predicate;
import forge.item.InventoryItem;
import java.util.*;
@@ -68,7 +69,7 @@ public class ItemPool<T extends InventoryItem> implements Iterable<Entry<T, Inte
* a T
*/
public ItemPool(final Class<T> cls) {
this(new Hashtable<T, Integer>(), cls);
this(new LinkedHashMap<T, Integer>(), cls);
}
@SuppressWarnings("unchecked")