Solar panel GUI & internal storage plus misc spelling fixes (#1912)

* Solar panel GUI & internal storage plus misc spelling fixes

* Pullrequest fixes and recipe changes
This commit is contained in:
Justin Vitale 2019-12-20 23:53:23 +11:00 committed by modmuss50
parent 73f0ff98e4
commit b2f4804987
14 changed files with 201 additions and 83 deletions

View file

@ -241,8 +241,8 @@ public class TRContent {
block = new BlockSolarPanel(this);
this.generationRateD = generationRateD;
this.generationRateN = generationRateN;
// Buffer for 2 mins of work
internalCapacity = generationRateD * 2_400;
internalCapacity = generationRateD * TechRebornConfig.solarInternalCapacityMultiplier;
InitUtils.setup(block, name + "_solar_panel");
}