blob: 1bc5a682872bbae98677e0edb6ef0d4f916432e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!--
Custom recipes that will not be over written by Ender IO are added here. Examples of recipes can be found in the
AlloySmelterRecipes_Core.xml and general format documentation in the SAGMillRecipes_Core/User.
As well as adding custom recipes to the operation of the Alloy Smelter, a vanilla furnace recipe can be controlled.
It can be disabled completely by simply adding this line:
<vanillaFurnaceRecipes enabled="false" />
It is also possible to selectively disable vanilla furnace recipes. The following example disables the smelting of iron
ingots, ender pearls, and any form of iron ore registered in the ore dictionary.
<vanillaFurnaceRecipes>
<exclude>
<itemStack modID="minecraft" itemName="iron_ingot" />
<itemStack modID="minecraft" itemName="ender_pearl" />
<itemStack oreDictionary="oreIron" />
</exclude>
</vanillaFurnaceRecipes>
Add this line to disable the creation of TE alloys using the Alloy Smelter.
<recipeGroup name="Thermal Expansion" enabled="false" />
-->
<AlloySmelterRecipes>
</AlloySmelterRecipes>
|