Add basic crafttweaker support for scrapbox
This commit is contained in:
parent
2e1de815a9
commit
029a75522c
2 changed files with 24 additions and 0 deletions
23
src/main/java/techreborn/compat/crafttweaker/CTScrapbox.java
Normal file
23
src/main/java/techreborn/compat/crafttweaker/CTScrapbox.java
Normal file
|
@ -0,0 +1,23 @@
|
|||
package techreborn.compat.crafttweaker;
|
||||
|
||||
import minetweaker.api.item.IIngredient;
|
||||
import minetweaker.api.minecraft.MineTweakerMC;
|
||||
import reborncore.api.recipe.RecipeHandler;
|
||||
import stanhebben.zenscript.annotations.ZenClass;
|
||||
import stanhebben.zenscript.annotations.ZenMethod;
|
||||
import techreborn.api.ScrapboxList;
|
||||
import techreborn.api.recipe.ScrapboxRecipe;
|
||||
|
||||
/**
|
||||
* Created by Mark on 02/06/2017.
|
||||
*/
|
||||
@ZenClass("mods.techreborn.scrapbox")
|
||||
public class CTScrapbox {
|
||||
|
||||
@ZenMethod
|
||||
public static void addScrapboxDrop(IIngredient input) {
|
||||
ScrapboxList.stacks.add(MineTweakerMC.getItemStack(input));
|
||||
RecipeHandler.addRecipe(new ScrapboxRecipe(MineTweakerMC.getItemStack(input)));
|
||||
}
|
||||
|
||||
}
|
|
@ -93,6 +93,7 @@ public class CraftTweakerCompat implements ICompatModule {
|
|||
MineTweakerAPI.registerClass(CTVacuumFreezer.class);
|
||||
MineTweakerAPI.registerClass(CTGenerator.class);
|
||||
MineTweakerAPI.registerClass(CTRollingMachine.class);
|
||||
MineTweakerAPI.registerClass(CTScrapbox.class);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue