Add basic crafttweaker support for scrapbox

This commit is contained in:
modmuss50 2017-06-02 16:00:07 +01:00
parent 2e1de815a9
commit 029a75522c
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82
2 changed files with 24 additions and 0 deletions

View 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)));
}
}

View file

@ -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