Fuzzy no longer matches ore dictionary less items as the same.

aka Bug: #0534 - Import Bus with Fuzzy Card does not work with damaged items
This commit is contained in:
AlgorithmX2
2014-06-13 13:42:38 -05:00
parent 0324dc62b9
commit ed85b174c6
+3 -3
View File
@@ -129,12 +129,12 @@ public class OreHelper
public boolean sameOre(OreRefrence a, OreRefrence b)
{
if ( a == b )
return true;
if ( a == null || b == null )
return false;
if ( a == b )
return true;
Collection<Integer> bOres = b.getOres();
for (Integer ore : a.ores)
{