diff --git a/src/minecraft/mekanism/generators/common/TileEntityAdvancedSolarGenerator.java b/src/minecraft/mekanism/generators/common/TileEntityAdvancedSolarGenerator.java index 6f0be181d..bc3fd045f 100644 --- a/src/minecraft/mekanism/generators/common/TileEntityAdvancedSolarGenerator.java +++ b/src/minecraft/mekanism/generators/common/TileEntityAdvancedSolarGenerator.java @@ -10,7 +10,7 @@ public class TileEntityAdvancedSolarGenerator extends TileEntitySolarGenerator i { public TileEntityAdvancedSolarGenerator() { - super("Advanced Solar Generator", 600000, 512, 512); + super("Advanced Solar Generator", 200000, 480, 450); } @Override diff --git a/src/minecraft/mekanism/generators/common/TileEntityBioGenerator.java b/src/minecraft/mekanism/generators/common/TileEntityBioGenerator.java index 134a04c1c..1d8232fcb 100644 --- a/src/minecraft/mekanism/generators/common/TileEntityBioGenerator.java +++ b/src/minecraft/mekanism/generators/common/TileEntityBioGenerator.java @@ -30,7 +30,7 @@ public class TileEntityBioGenerator extends TileEntityGenerator implements ITank public TileEntityBioGenerator() { - super("Bio-Generator", 160000, 512); + super("Bio-Generator", 160000, 600); inventory = new ItemStack[2]; } @@ -116,7 +116,7 @@ public class TileEntityBioGenerator extends TileEntityGenerator implements ITank setActive(true); } bioFuelSlot.setLiquid(bioFuelSlot.liquidStored - 10); - setJoules(electricityStored + 800); + setJoules(electricityStored + 560); } else { if(!worldObj.isRemote) diff --git a/src/minecraft/mekanism/generators/common/TileEntityHeatGenerator.java b/src/minecraft/mekanism/generators/common/TileEntityHeatGenerator.java index 02f6ba7fd..83b419316 100644 --- a/src/minecraft/mekanism/generators/common/TileEntityHeatGenerator.java +++ b/src/minecraft/mekanism/generators/common/TileEntityHeatGenerator.java @@ -31,7 +31,7 @@ public class TileEntityHeatGenerator extends TileEntityGenerator implements ITan public TileEntityHeatGenerator() { - super("Heat Generator", 160000, 512); + super("Heat Generator", 160000, 840); inventory = new ItemStack[2]; } @@ -119,7 +119,7 @@ public class TileEntityHeatGenerator extends TileEntityGenerator implements ITan setActive(true); } fuelSlot.setLiquid(fuelSlot.liquidStored - 10); - setJoules(electricityStored + 400); + setJoules(electricityStored + 320); } else { if(!worldObj.isRemote) @@ -158,17 +158,17 @@ public class TileEntityHeatGenerator extends TileEntityGenerator implements ITan int boost = 0; if(worldObj.getBlockId(xCoord+1, yCoord, zCoord) == 10 || worldObj.getBlockId(xCoord+1, yCoord, zCoord) == 11) - boost+=200; + boost+=100; if(worldObj.getBlockId(xCoord-1, yCoord, zCoord) == 10 || worldObj.getBlockId(xCoord-1, yCoord, zCoord) == 11) - boost+=200; + boost+=100; if(worldObj.getBlockId(xCoord, yCoord+1, zCoord) == 10 || worldObj.getBlockId(xCoord, yCoord+1, zCoord) == 11) - boost+=200; + boost+=100; if(worldObj.getBlockId(xCoord, yCoord-1, zCoord) == 10 || worldObj.getBlockId(xCoord, yCoord-1, zCoord) == 11) - boost+=200; + boost+=100; if(worldObj.getBlockId(xCoord, yCoord, zCoord+1) == 10 || worldObj.getBlockId(xCoord, yCoord, zCoord+1) == 11) - boost+=200; + boost+=100; if(worldObj.getBlockId(xCoord, yCoord, zCoord-1) == 10 || worldObj.getBlockId(xCoord, yCoord, zCoord-1) == 11) - boost+=200; + boost+=100; return boost; } diff --git a/src/minecraft/mekanism/generators/common/TileEntityHydrogenGenerator.java b/src/minecraft/mekanism/generators/common/TileEntityHydrogenGenerator.java index 2096c117b..9af14f87e 100644 --- a/src/minecraft/mekanism/generators/common/TileEntityHydrogenGenerator.java +++ b/src/minecraft/mekanism/generators/common/TileEntityHydrogenGenerator.java @@ -115,7 +115,7 @@ public class TileEntityHydrogenGenerator extends TileEntityGenerator implements } hydrogenStored--; - setJoules(electricityStored + 1600); + setJoules(electricityStored + 1000); } else { if(!worldObj.isRemote) diff --git a/src/minecraft/mekanism/generators/common/TileEntitySolarGenerator.java b/src/minecraft/mekanism/generators/common/TileEntitySolarGenerator.java index 140ac0e0a..48a8ac24f 100644 --- a/src/minecraft/mekanism/generators/common/TileEntitySolarGenerator.java +++ b/src/minecraft/mekanism/generators/common/TileEntitySolarGenerator.java @@ -26,8 +26,8 @@ public class TileEntitySolarGenerator extends TileEntityGenerator public TileEntitySolarGenerator() { - super("Solar Generator", 96000, 64); - GENERATION_RATE = 64; + super("Solar Generator", 96000, 60); + GENERATION_RATE = 50; inventory = new ItemStack[1]; }