Large buff to power usage, should fix #769
This commit is contained in:
parent
51331b77e7
commit
29b0d2443f
4 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@ import techreborn.api.recipe.BaseRecipe;
|
|||
public class GrinderRecipe extends BaseRecipe {
|
||||
|
||||
public GrinderRecipe(ItemStack input1, ItemStack output1, int tickTime, int euPerTick) {
|
||||
super(Reference.grinderRecipe, tickTime, euPerTick);
|
||||
super(Reference.grinderRecipe, tickTime, euPerTick / 10); //Done to buff energy usage to be more in line with ic2
|
||||
if (input1 != null)
|
||||
inputs.add(input1);
|
||||
if (output1 != null)
|
||||
|
|
|
@ -11,7 +11,7 @@ public class IndustrialGrinderRecipe extends BaseRecipe {
|
|||
|
||||
public IndustrialGrinderRecipe(ItemStack input1, FluidStack fluidStack, ItemStack output1,
|
||||
ItemStack output2, ItemStack output3, ItemStack output4, int tickTime, int euPerTick) {
|
||||
super(Reference.industrialGrinderRecipe, tickTime, euPerTick);
|
||||
super(Reference.industrialGrinderRecipe, tickTime, (int) (euPerTick /2.5)); // Buff energy usage to be more in line with other machines
|
||||
if (input1 != null)
|
||||
inputs.add(input1);
|
||||
if (output1 != null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue