Changed battery from 1GJ to 5MJ

This commit is contained in:
DarkGuardsman 2013-10-26 18:55:44 -04:00
parent 13ee4eb594
commit d615a8745b

View file

@ -10,7 +10,7 @@ import dark.core.common.DarkMain;
import dark.core.prefab.ModPrefab;
/** Simple battery to store energy
*
*
* @author DarkGuardsman */
public class ItemBattery extends ItemElectric
{
@ -43,6 +43,6 @@ public class ItemBattery extends ItemElectric
@Override
public float getMaxElectricityStored(ItemStack theItem)
{
return 1000000;
return 5000;
}
}