From 852afa2d7f075fa58df125e55ec133b42f6f3c0d Mon Sep 17 00:00:00 2001 From: AlexIIL Date: Sat, 19 Jan 2019 14:24:41 +0000 Subject: [PATCH] Fix updated buildcraft API name, fixing #2343. Caused by the fix for https://github.com/BuildCraft/BuildCraftAPI/issues/44 (where railcraft couldn't properly depend on the BC API's as forge rejected the old names). --- src/main/java/forestry/core/utils/InventoryUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/forestry/core/utils/InventoryUtil.java b/src/main/java/forestry/core/utils/InventoryUtil.java index c70c2c72d7..fbf3414fe0 100644 --- a/src/main/java/forestry/core/utils/InventoryUtil.java +++ b/src/main/java/forestry/core/utils/InventoryUtil.java @@ -86,7 +86,7 @@ public static boolean moveOneItemToPipe(IItemHandler source, AdjacentTileCache t } //TODO Buildcraft for 1.9 - @Optional.Method(modid = "BuildCraftAPI|transport") + @Optional.Method(modid = "buildcraftapi_transport") private static boolean internal_moveOneItemToPipe(IItemHandler source, AdjacentTileCache tileCache, EnumFacing[] directions) { // IInventory invClone = new InventoryCopy(source); // ItemStack stackToMove = removeOneItem(invClone);