Fixed missing ores
This commit is contained in:
@@ -52,7 +52,7 @@ public abstract class Unit extends DestructibleEntity implements SaveTrait, Targ
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean movable(){
|
public boolean movable(){
|
||||||
return true;
|
return !isDead();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ public class SectorPresets{
|
|||||||
new CommandMission(UnitCommand.attack),
|
new CommandMission(UnitCommand.attack),
|
||||||
new BattleMission()
|
new BattleMission()
|
||||||
),
|
),
|
||||||
Array.with(Items.copper, Items.lead, Items.copper),
|
Array.with(Items.copper, Items.lead, Items.coal),
|
||||||
2));
|
2));
|
||||||
|
|
||||||
//pad mission
|
//pad mission
|
||||||
@@ -44,7 +44,7 @@ public class SectorPresets{
|
|||||||
new MechMission(Mechs.delta),
|
new MechMission(Mechs.delta),
|
||||||
new WaveMission(15)
|
new WaveMission(15)
|
||||||
),
|
),
|
||||||
Array.with(Items.copper, Items.lead, Items.copper, Items.titanium),
|
Array.with(Items.copper, Items.lead, Items.coal, Items.titanium),
|
||||||
2));
|
2));
|
||||||
|
|
||||||
//oil mission
|
//oil mission
|
||||||
@@ -56,7 +56,7 @@ public class SectorPresets{
|
|||||||
Missions.blockRecipe(CraftingBlocks.biomatterCompressor),
|
Missions.blockRecipe(CraftingBlocks.biomatterCompressor),
|
||||||
new ContentMission(Liquids.oil)
|
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));
|
2));
|
||||||
|
|
||||||
//tutorial ore presets
|
//tutorial ore presets
|
||||||
|
|||||||
Reference in New Issue
Block a user