diff --git a/core/src/mindustry/client/ui/SchematicBrowserDialog.java b/core/src/mindustry/client/ui/SchematicBrowserDialog.java index 33ebb886d1..668f516d59 100644 --- a/core/src/mindustry/client/ui/SchematicBrowserDialog.java +++ b/core/src/mindustry/client/ui/SchematicBrowserDialog.java @@ -301,7 +301,7 @@ public void showExport(Schematic s){ t.button("@schematic.copy", Icon.copy, style, () -> { dialog.hide(); ui.showInfoFade("@copied"); - Core.app.setClipboardText(schematics.writeBase64(s)); + Core.app.setClipboardText(schematics.writeBase64(s, Core.settings.getBool("schematicmenuexporttags"))); }).marginLeft(12f); t.row(); t.button("@schematic.exportfile", Icon.export, style, () -> { diff --git a/core/src/mindustry/ui/dialogs/SchematicsDialog.java b/core/src/mindustry/ui/dialogs/SchematicsDialog.java index be436392d4..ffc303ac4b 100644 --- a/core/src/mindustry/ui/dialogs/SchematicsDialog.java +++ b/core/src/mindustry/ui/dialogs/SchematicsDialog.java @@ -314,7 +314,7 @@ public void showExport(Schematic s){ t.button("@schematic.copy", Icon.copy, style, () -> { dialog.hide(); ui.showInfoFade("@copied"); - Core.app.setClipboardText(schematics.writeBase64(s, false)); + Core.app.setClipboardText(schematics.writeBase64(s, Core.settings.getBool("schematicmenuexporttags"))); }).marginLeft(12f); t.row(); t.button("@schematic.exportfile", Icon.export, style, () -> {