mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-03-13 19:39:04 +07:00
Fixed missing ores
This commit is contained in:
parent
4ca546f44a
commit
fadfdaa673
@ -52,7 +52,7 @@ public abstract class Unit extends DestructibleEntity implements SaveTrait, Targ
|
||||
|
||||
@Override
|
||||
public boolean movable(){
|
||||
return true;
|
||||
return !isDead();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -34,7 +34,7 @@ public class SectorPresets{
|
||||
new CommandMission(UnitCommand.attack),
|
||||
new BattleMission()
|
||||
),
|
||||
Array.with(Items.copper, Items.lead, Items.copper),
|
||||
Array.with(Items.copper, Items.lead, Items.coal),
|
||||
2));
|
||||
|
||||
//pad mission
|
||||
@ -44,7 +44,7 @@ public class SectorPresets{
|
||||
new MechMission(Mechs.delta),
|
||||
new WaveMission(15)
|
||||
),
|
||||
Array.with(Items.copper, Items.lead, Items.copper, Items.titanium),
|
||||
Array.with(Items.copper, Items.lead, Items.coal, Items.titanium),
|
||||
2));
|
||||
|
||||
//oil mission
|
||||
@ -56,7 +56,7 @@ public class SectorPresets{
|
||||
Missions.blockRecipe(CraftingBlocks.biomatterCompressor),
|
||||
new ContentMission(Liquids.oil)
|
||||
),
|
||||
Array.with(Items.copper, Items.lead, Items.copper, Items.titanium),
|
||||
Array.with(Items.copper, Items.lead, Items.coal, Items.titanium),
|
||||
2));
|
||||
|
||||
//tutorial ore presets
|
||||
|
Loading…
Reference in New Issue
Block a user