GoodTimeStudio / Production-Line

A Minecraft Mod
MIT License
11 stars 9 forks source link

Could not add ore washing machine recipe #26

Closed BestOwl closed 8 years ago

BestOwl commented 8 years ago

test

ic2.api.recipe.Recipes.oreWashing.addRecipe(
                new RecipeInputItemStack(GtiItems.crushedIridium),
                null,
                GtiItems.cleanedCrushedIridium,
                doubleSmallTinDust
);

no work

BestOwl commented 8 years ago

@liach Could you help me please.

liach commented 8 years ago
NBTTagCompound tag = new NBTTagCompound();
tag.setInteger("amount", 1000);
ic2.api.recipe.Recipes.oreWashing.addRecipe(
                new RecipeInputItemStack(GtiItems.crushedIridium),
                tag,
                GtiItems.cleanedCrushedIridium,
                doubleSmallTinDust
);

Amount: water amount

BestOwl commented 8 years ago

thanks