Fix 4 more recipes using too much power

This commit is contained in:
modmuss50 2018-04-03 18:37:09 +01:00
parent 20f0fff58c
commit 6d8f667cbb
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82

View file

@ -277,24 +277,24 @@ public class ModRecipes {
RecipeHandler.addRecipe(new VacuumFreezerRecipe( RecipeHandler.addRecipe(new VacuumFreezerRecipe(
new ItemStack(Blocks.ICE, 2), new ItemStack(Blocks.ICE, 2),
new ItemStack(Blocks.PACKED_ICE), new ItemStack(Blocks.PACKED_ICE),
60, 100 60, 64
)); ));
RecipeHandler.addRecipe(new VacuumFreezerRecipe( RecipeHandler.addRecipe(new VacuumFreezerRecipe(
ItemIngots.getIngotByName("hot_tungstensteel"), ItemIngots.getIngotByName("hot_tungstensteel"),
ItemIngots.getIngotByName("tungstensteel"), ItemIngots.getIngotByName("tungstensteel"),
440, 120)); 440, 64));
RecipeHandler.addRecipe(new VacuumFreezerRecipe( RecipeHandler.addRecipe(new VacuumFreezerRecipe(
ItemCells.getCellByName("heliumplasma"), ItemCells.getCellByName("heliumplasma"),
ItemCells.getCellByName("helium"), ItemCells.getCellByName("helium"),
440, 128)); 440, 64));
RecipeHandler.addRecipe( RecipeHandler.addRecipe(
new VacuumFreezerRecipe( new VacuumFreezerRecipe(
ItemCells.getCellByName("water"), ItemCells.getCellByName("water"),
ItemCells.getCellByName("cell"), ItemCells.getCellByName("cell"),
60, 87)); 60, 64));
} }