Skip to content

Commit 7a12d23

Browse files
committed
check non-component sensitive index first
1 parent 9cab48c commit 7a12d23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/mekanism/common/recipe/lookup/cache/type/ComponentSensitiveInputCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void clear() {
4141
*/
4242
@Override
4343
public boolean contains(INPUT input) {
44-
return componentInputCache.containsKey(input) || super.contains(input);
44+
return super.contains(input) || componentInputCache.containsKey(input);
4545
}
4646

4747
/**

0 commit comments

Comments
 (0)