Close #682
This commit is contained in:
parent
9521e3d631
commit
5dd8c03392
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ public class ArcaneWorkbench {
|
||||||
|
|
||||||
@ZenMethod
|
@ZenMethod
|
||||||
public static void registerShapedRecipe(String name, String research, int vis, CTAspectStack[] aspectList, IItemStack output, IIngredient[][] input) {
|
public static void registerShapedRecipe(String name, String research, int vis, CTAspectStack[] aspectList, IItemStack output, IIngredient[][] input) {
|
||||||
ModTweaker.LATE_ADDITIONS.add(new AddShaped(new ResourceLocation(Reference.MODID, name), research, vis, ThaumCraft.getAspects(aspectList), InputHelper.toStack(output), InputHelper.toShapedObjects(input)));
|
ModTweaker.LATE_ADDITIONS.add(new AddShaped(new ResourceLocation("thaumcraft", name), research, vis, ThaumCraft.getAspects(aspectList), InputHelper.toStack(output), InputHelper.toShapedObjects(input)));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ZenMethod
|
@ZenMethod
|
||||||
|
@ -37,7 +37,7 @@ public class ArcaneWorkbench {
|
||||||
for(int i = 0; i < input.length; i++) {
|
for(int i = 0; i < input.length; i++) {
|
||||||
list.set(i, CraftTweakerMC.getIngredient(input[i]));
|
list.set(i, CraftTweakerMC.getIngredient(input[i]));
|
||||||
}
|
}
|
||||||
ModTweaker.LATE_ADDITIONS.add(new AddShapeless(new ResourceLocation(Reference.MODID, name), research, vis, ThaumCraft.getAspects(aspectList), InputHelper.toStack(output), list));
|
ModTweaker.LATE_ADDITIONS.add(new AddShapeless(new ResourceLocation("thaumcraft", name), research, vis, ThaumCraft.getAspects(aspectList), InputHelper.toStack(output), list));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ZenMethod
|
@ZenMethod
|
||||||
|
|
Loading…
Reference in a new issue