Update IC2 API.

This commit is contained in:
Aidan Brady 2013-10-31 22:46:16 -04:00
parent f0b6799409
commit cecff2947c
2 changed files with 5 additions and 0 deletions

View file

@ -310,6 +310,7 @@ public final class Items {
// el. tools/devices/weapons
miningDrill; // Mining Drill item, meta = damage value for charge level
diamondDrill; // Diamond Tipped Mining Drill item, meta = damage value for charge level
iridiumDrill; // Iridium Tipped Mining Drill item, meta = damage value for charge level
chainsaw; // Chainsaw item, meta = damage value for charge level
electricWrench; // Electric Wrench item, meta = damage value for charge level
electricTreetap; // Electric Treetap item, meta = damage value for charge level

View file

@ -17,6 +17,10 @@ public interface IMachineRecipeManager {
* @param input Recipe input
* @param metadata meta data for additional recipe properties, may be null
* @param outputs Recipe outputs, zero or more depending on the machine
*
* For the thermal centrifuge @param metadata meta data {"minHeat": 1-xxx}
* For the ore washing plant @param metadata meta data {"amount": 1-8000}
*
*/
public void addRecipe(IRecipeInput input, NBTTagCompound metadata, ItemStack... outputs);