mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-20 17:28:14 +07:00
Bugfixes
This commit is contained in:
parent
40b67349d9
commit
c874089f27
@ -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"){{
|
||||
|
@ -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);
|
||||
|
||||
|
@ -3,8 +3,7 @@ package mindustry.desktop.steam;
|
||||
public enum SAchievement{
|
||||
kill1kEnemies(SStat.unitsDestroyed, 1000),
|
||||
kill100kEnemies(SStat.unitsDestroyed, 100_000),
|
||||
launch10kItems(SStat.itemsLaunched, 10_000),
|
||||
launch1milItems(SStat.itemsLaunched, 1_000_000),
|
||||
launch100kItems(SStat.itemsLaunched, 100_000),
|
||||
|
||||
produce1kMin(SStat.maxProduction, 1000),
|
||||
produce20kMin(SStat.maxProduction, 20_000),
|
||||
|
@ -1,3 +1,3 @@
|
||||
org.gradle.daemon=true
|
||||
org.gradle.jvmargs=-Xms256m -Xmx1024m
|
||||
archash=6742c2b110eeecd1934c42b5b1c87b00c911ecc4
|
||||
archash=7a2a357f6cfdc3725ce581093a0ced91f4474222
|
||||
|
Loading…
Reference in New Issue
Block a user