From d10033fb50fd97f27074d0f879e3c99548297dd6 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Thu, 30 Jan 2014 18:50:39 -0600 Subject: [PATCH] Fixed issue with wrong item being extracted with buses in precise mode. --- util/Platform.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/Platform.java b/util/Platform.java index 8e65ee246..dfeb0c239 100644 --- a/util/Platform.java +++ b/util/Platform.java @@ -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)