diff --git a/core/assets/maps/onset.msav b/core/assets/maps/onset.msav index 50f70ad087..69cd3ec177 100644 Binary files a/core/assets/maps/onset.msav and b/core/assets/maps/onset.msav differ diff --git a/core/assets/maps/two.msav b/core/assets/maps/two.msav index 272f67b0b3..a10184dd40 100644 Binary files a/core/assets/maps/two.msav and b/core/assets/maps/two.msav differ diff --git a/core/src/mindustry/editor/EditorTool.java b/core/src/mindustry/editor/EditorTool.java index 23d2c00c29..d2470f578d 100644 --- a/core/src/mindustry/editor/EditorTool.java +++ b/core/src/mindustry/editor/EditorTool.java @@ -144,7 +144,7 @@ public enum EditorTool{ if(tile.synthetic()){ Team dest = tile.team(); if(dest == editor.drawTeam) return; - fill(x, y, false, t -> t.getTeamID() == dest.id && t.synthetic(), t -> t.setTeam(editor.drawTeam)); + fill(x, y, true, t -> t.getTeamID() == dest.id && t.synthetic(), t -> t.setTeam(editor.drawTeam)); } } }