Skip to content

Commit

Permalink
Fix slot randomization order not being respected
Browse files Browse the repository at this point in the history
  • Loading branch information
pupnewfster committed Apr 5, 2024
1 parent 0ced834 commit 4762009
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,7 +1,7 @@
package mekanism.common.lib.inventory;

import it.unimi.dsi.fastutil.ints.Int2IntLinkedOpenHashMap;
import it.unimi.dsi.fastutil.ints.Int2IntMap;
import it.unimi.dsi.fastutil.ints.Int2IntOpenHashMap;
import it.unimi.dsi.fastutil.objects.ObjectIterator;
import java.util.Collection;
import java.util.Collections;
Expand Down Expand Up @@ -49,7 +49,7 @@ public Collection<HandlerItemData> getItemData() {

public class HandlerItemData extends ItemData {

private final Int2IntMap slotMap = new Int2IntOpenHashMap();
private final Int2IntMap slotMap = new Int2IntLinkedOpenHashMap();

public HandlerItemData(HashedItem itemType) {
super(itemType);
Expand Down

0 comments on commit 4762009

Please sign in to comment.