IndustrialElectrolyzer now uses fluids

IndustrialElectrolyzer now renders fluids in gui
IndustrialElectrolyzer recipe handler now renders fluids
This commit is contained in:
Gig 2015-06-26 17:56:09 +01:00
parent 6cc1071961
commit 6e74b9197b
6 changed files with 175 additions and 15 deletions

View file

@ -1919,7 +1919,7 @@ public class ModRecipes {
}
static void addIndustrialElectrolyzerRecipes() {
RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(null, ItemDusts.getDustByName("chrome"), ItemGems.getGemByName("ruby"), null, null, null, 100, 128));
RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(null, ItemDusts.getDustByName("chrome"), new FluidStack(FluidRegistry.WATER, 1000), ItemGems.getGemByName("ruby"), null, null, null, 100, 128));
}
}