mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-20 09:17:19 +07:00
Starting balance
This commit is contained in:
parent
757e11060f
commit
551d01bf6e
Binary file not shown.
@ -1795,7 +1795,7 @@ public class Blocks{
|
||||
}};
|
||||
|
||||
ductRouter = new DuctRouter("duct-router"){{
|
||||
requirements(Category.distribution, with(Items.graphite, 8));
|
||||
requirements(Category.distribution, with(Items.graphite, 8, Items.beryllium, 4));
|
||||
speed = 4f;
|
||||
}};
|
||||
|
||||
|
@ -50,7 +50,8 @@ public class ErekirTechTree{
|
||||
});
|
||||
});
|
||||
|
||||
node(constructor, erekirSector, () -> {
|
||||
//TODO further in? no use for these without units.
|
||||
node(constructor, Seq.with(new Research(siliconArcFurnace), erekirSector.first()), () -> {
|
||||
node(payloadLoader, () -> {
|
||||
node(payloadUnloader, () -> {
|
||||
node(payloadPropulsionTower, () -> {
|
||||
|
@ -114,7 +114,7 @@ public class SectorPresets{
|
||||
|
||||
onset = new SectorPreset("onset", erekir, 10){{
|
||||
addStartingItems = true;
|
||||
captureWave = 4;
|
||||
captureWave = 2;
|
||||
difficulty = 1;
|
||||
}};
|
||||
|
||||
|
@ -362,7 +362,7 @@ public abstract class SaveVersion extends SaveFileReader{
|
||||
|
||||
public void readWorldEntities(DataInput stream) throws IOException{
|
||||
//entityMapping is null in older save versions, so use the default
|
||||
Prov[] mapping = this.entityMapping == null ? EntityMapping.idMap : this.entityMapping;
|
||||
var mapping = this.entityMapping == null ? EntityMapping.idMap : this.entityMapping;
|
||||
|
||||
int amount = stream.readInt();
|
||||
for(int j = 0; j < amount; j++){
|
||||
|
Loading…
Reference in New Issue
Block a user