File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
src/main/java/com/github/gtexpert/core/integration/eio/recipes Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ public static void init() {
2929 RecipeMaps .ASSEMBLER_RECIPES .recipeBuilder ()
3030 .input (Items .PAPER )
3131 .input ("dyeBlack" )
32- .circuitMeta (2 )
32+ .circuitMeta (4 )
3333 .outputs (Mods .EnderIO .getItem ("item_material" , 1 , 77 ))
3434 .duration (100 ).EUt (4 ).buildAndRegister ();
3535 RecipeMaps .ASSEMBLER_RECIPES .recipeBuilder ()
3636 .input (Items .PAPER )
3737 .fluidInputs (Materials .DyeBlack .getFluid (72 ))
38- .circuitMeta (2 )
38+ .circuitMeta (4 )
3939 .outputs (Mods .EnderIO .getItem ("item_material" , 1 , 77 ))
4040 .duration (100 ).EUt (4 ).buildAndRegister ();
4141
Original file line number Diff line number Diff line change @@ -59,6 +59,18 @@ private static void soulBinderRecipes() {
5959 .output (ModObject .itemSoulVial .getItemNN ())
6060 .output (ModObject .itemSoulFilterBig .getItemNN ())
6161 .duration (1000 ).EUt (VA [LV ]).buildAndRegister ();
62+
63+ // SoulBinder - Broken Spawner
64+ ItemStack spawnerStack = new ItemStack (ModObject .itemBrokenSpawner .getItemNN (), 1 , 0 );
65+ spawnerStack .setTagCompound (tag );
66+ EnderIORecipeMaps .SOUL_BINDER_RECIPES .recipeBuilder ()
67+ .input (new GTRecipeItemInput (stack ).setNBTMatchingCondition (NBTMatcher .RECURSIVE_EQUAL_TO ,
68+ NBTCondition .create (NBTTagType .STRING , "entityId" , name .toString ())))
69+ .inputNBT (ModObject .itemBrokenSpawner .getItem (), NBTMatcher .ANY , NBTCondition .ANY )
70+ .fluidInputs (GTEUtility .getModFluid ("xpjuice" , 2240 ))
71+ .output (ModObject .itemSoulVial .getItemNN ())
72+ .outputs (spawnerStack )
73+ .duration (1200 ).EUt (VA [MV ]).buildAndRegister ();
6274 }
6375 }
6476
You can’t perform that action at this time.
0 commit comments