Misc bugfixes

This commit is contained in:
Anuken 2022-01-23 15:34:51 -05:00
parent 5a2d69278b
commit 56334d9199
3 changed files with 6 additions and 2 deletions

Binary file not shown.

View File

@ -42,9 +42,7 @@ public class SerpuloTechTree{
node(titaniumConveyor, Seq.with(new SectorComplete(craters)), () -> {
node(phaseConveyor, () -> {
node(massDriver, () -> {
node(payloadPropulsionTower, () -> {
});
});
});

View File

@ -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()){