From fbaff342e4540fa2b778434c6a511d5682fda52d Mon Sep 17 00:00:00 2001 From: Gunther De Wachter Date: Sat, 22 Jul 2017 00:33:16 +0200 Subject: [PATCH] Fixed cable anchor recipe. Apparently 32767 is the magic wildcard number we were looking for. --- .../recipes/network/parts/cable_anchor.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/resources/assets/appliedenergistics2/recipes/network/parts/cable_anchor.json b/src/main/resources/assets/appliedenergistics2/recipes/network/parts/cable_anchor.json index d815063fc..a45ada523 100644 --- a/src/main/resources/assets/appliedenergistics2/recipes/network/parts/cable_anchor.json +++ b/src/main/resources/assets/appliedenergistics2/recipes/network/parts/cable_anchor.json @@ -49,10 +49,12 @@ ], [ { - "item": "appliedenergistics2:certus_quartz_cutting_knife" + "item": "appliedenergistics2:certus_quartz_cutting_knife", + "data": 32767 }, { - "item": "appliedenergistics2:nether_quartz_cutting_knife" + "item": "appliedenergistics2:nether_quartz_cutting_knife", + "data": 32767 } ] ]