mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-21 09:47:14 +07:00
Misc bugfixes
This commit is contained in:
parent
5a2d69278b
commit
56334d9199
Binary file not shown.
@ -42,11 +42,9 @@ public class SerpuloTechTree{
|
||||
node(titaniumConveyor, Seq.with(new SectorComplete(craters)), () -> {
|
||||
node(phaseConveyor, () -> {
|
||||
node(massDriver, () -> {
|
||||
node(payloadPropulsionTower, () -> {
|
||||
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
node(payloadConveyor, () -> {
|
||||
node(payloadRouter, () -> {
|
||||
|
@ -293,6 +293,12 @@ public class MapEditorDialog extends Dialog implements Disposable{
|
||||
|
||||
player.clearUnit();
|
||||
|
||||
//remove player unit
|
||||
Unit unit = Groups.unit.find(u -> u.spawnedByCore);
|
||||
if(unit != null){
|
||||
unit.remove();
|
||||
}
|
||||
|
||||
Map returned = null;
|
||||
|
||||
if(name.isEmpty()){
|
||||
|
Loading…
Reference in New Issue
Block a user