mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-01 20:04:02 +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(titaniumConveyor, Seq.with(new SectorComplete(craters)), () -> {
|
||||||
node(phaseConveyor, () -> {
|
node(phaseConveyor, () -> {
|
||||||
node(massDriver, () -> {
|
node(massDriver, () -> {
|
||||||
node(payloadPropulsionTower, () -> {
|
|
||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
node(payloadConveyor, () -> {
|
node(payloadConveyor, () -> {
|
||||||
node(payloadRouter, () -> {
|
node(payloadRouter, () -> {
|
||||||
|
@ -293,6 +293,12 @@ public class MapEditorDialog extends Dialog implements Disposable{
|
|||||||
|
|
||||||
player.clearUnit();
|
player.clearUnit();
|
||||||
|
|
||||||
|
//remove player unit
|
||||||
|
Unit unit = Groups.unit.find(u -> u.spawnedByCore);
|
||||||
|
if(unit != null){
|
||||||
|
unit.remove();
|
||||||
|
}
|
||||||
|
|
||||||
Map returned = null;
|
Map returned = null;
|
||||||
|
|
||||||
if(name.isEmpty()){
|
if(name.isEmpty()){
|
||||||
|
Loading…
Reference in New Issue
Block a user