Fixed issue with wrong item being extracted with buses in precise mode.

This commit is contained in:
AlgorithmX2 2014-01-30 18:50:39 -06:00
parent ac365b28c6
commit d10033fb50

View file

@ -1048,7 +1048,7 @@ public class Platform
public static boolean isSameItemPrecise(ItemStack is, ItemStack filter)
{
return isSameItem( is, filter );
return isSameItem( is, filter ) && sameStackStags( is, filter );
}
public static boolean isSameItemFuzzy(ItemStack a, ItemStack b, FuzzyMode Mode)