diff --git a/core/src/mindustry/content/SerpuloTechTree.java b/core/src/mindustry/content/SerpuloTechTree.java index e6efb47eca..b452004f7d 100644 --- a/core/src/mindustry/content/SerpuloTechTree.java +++ b/core/src/mindustry/content/SerpuloTechTree.java @@ -399,7 +399,7 @@ public class SerpuloTechTree{ }); }); - node(navalFactory, Seq.with(new SectorComplete(ruinousShores)), () -> { + node(navalFactory, Seq.with(new OnSector(windsweptIslands)), () -> { node(risso, () -> { node(minke, () -> { node(bryde, () -> { diff --git a/core/src/mindustry/editor/MapEditorDialog.java b/core/src/mindustry/editor/MapEditorDialog.java index a4c2de9dc3..c1f3a6e888 100644 --- a/core/src/mindustry/editor/MapEditorDialog.java +++ b/core/src/mindustry/editor/MapEditorDialog.java @@ -695,28 +695,6 @@ public class MapEditorDialog extends Dialog implements Disposable{ editor.undo(); } - //more undocumented features, fantastic - if(Core.input.keyTap(KeyCode.t)){ - - //clears all 'decoration' from the map - for(int x = 0; x < editor.width(); x++){ - for(int y = 0; y < editor.height(); y++){ - Tile tile = editor.tile(x, y); - if(tile.block().breakable && tile.block() instanceof Prop){ - tile.setBlock(Blocks.air); - editor.renderer.updatePoint(x, y); - } - - if(tile.overlay() != Blocks.air && tile.overlay() != Blocks.spawn){ - tile.setOverlay(Blocks.air); - editor.renderer.updatePoint(x, y); - } - } - } - - editor.flushOp(); - } - if(Core.input.keyTap(KeyCode.y)){ editor.redo(); }