Tweak some power values, closes #564
This commit is contained in:
parent
188e2ef0c5
commit
78ccf1bcfb
3 changed files with 4 additions and 4 deletions
|
@ -199,7 +199,7 @@ public class ConfigTechReborn
|
|||
|
||||
// Power
|
||||
ThermalGeneratorOutput = config
|
||||
.get(CATEGORY_POWER, "ThermalGenerator Max Output", 30, "Set the max output for the ThermalGenerator")
|
||||
.get(CATEGORY_POWER, "ThermalGenerator Max Output", 60, "Set the max output for the ThermalGenerator")
|
||||
.getInt();
|
||||
|
||||
DragonEggSiphonerOutput = config
|
||||
|
|
|
@ -65,7 +65,7 @@ public class TilePlayerDectector extends TilePowerAcceptor
|
|||
{
|
||||
boolean lastRedstone = redstone;
|
||||
redstone = false;
|
||||
if (canUseEnergy(50))
|
||||
if (canUseEnergy(10))
|
||||
{
|
||||
Iterator tIterator = super.worldObj.playerEntities.iterator();
|
||||
while (tIterator.hasNext())
|
||||
|
@ -95,7 +95,7 @@ public class TilePlayerDectector extends TilePowerAcceptor
|
|||
redstone = true;
|
||||
}
|
||||
}
|
||||
useEnergy(50);
|
||||
useEnergy(10);
|
||||
}
|
||||
if (lastRedstone != redstone)
|
||||
{
|
||||
|
|
|
@ -15,7 +15,7 @@ import techreborn.init.ModBlocks;
|
|||
|
||||
public class TileGenerator extends TilePowerAcceptor implements IWrenchable,IInventoryProvider
|
||||
{
|
||||
public static int outputAmount = 10; // This is in line with BC engines rf,
|
||||
public static int outputAmount = 20; // This is in line with BC engines rf,
|
||||
public Inventory inventory = new Inventory(2, "TileGenerator", 64, this);
|
||||
public int fuelSlot = 0;
|
||||
public int burnTime;
|
||||
|
|
Loading…
Reference in a new issue