blob: f893b70cf6b81181dd0bb11a9828ec0e17f1418a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package com.github.technus.tectech.loader;
import com.github.technus.tectech.recipe.TT_recipeAdder;
import net.minecraft.init.Blocks;
import net.minecraft.item.ItemStack;
/**
* Created by Tec on 06.08.2017.
*/
public class BloodyRecipeLoader implements Runnable {
@Override
public void run() {
TT_recipeAdder.addResearchableAssemblylineRecipe(new ItemStack(Blocks.cobblestone),100,new ItemStack[]{new ItemStack(Blocks.stone)},null,new ItemStack(Blocks.stone_button),30,30);
}
}
|