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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user