This commit is contained in:
Anuken
2020-11-25 15:42:51 -05:00
parent 40b67349d9
commit c874089f27
4 changed files with 6 additions and 7 deletions

View File

@@ -1221,13 +1221,13 @@ public class Blocks implements ContentList{
solarPanel = new SolarGenerator("solar-panel"){{
requirements(Category.power, with(Items.lead, 10, Items.silicon, 15));
powerProduction = 0.08f;
powerProduction = 0.1f;
}};
largeSolarPanel = new SolarGenerator("solar-panel-large"){{
requirements(Category.power, with(Items.lead, 100, Items.silicon, 145, Items.phaseFabric, 15));
requirements(Category.power, with(Items.lead, 80, Items.silicon, 110, Items.phaseFabric, 15));
size = 3;
powerProduction = 1f;
powerProduction = 1.3f;
}};
thoriumReactor = new NuclearReactor("thorium-reactor"){{

View File

@@ -110,7 +110,7 @@ public abstract class UnlockableContent extends MappableContent{
/** Makes this piece of content unlocked; if it already unlocked, nothing happens. */
public void unlock(){
if(!unlocked()){
if(!net.client() && !unlocked()){
unlocked = true;
Core.settings.put(name + "-unlocked", true);