From d7b2175758b744829730ad9ea1857c1d7af5a6da Mon Sep 17 00:00:00 2001 From: BalaM314 <71201189+BalaM314@users.noreply.github.com> Date: Tue, 4 Jun 2024 10:36:19 +0530 Subject: [PATCH] Fix bundle issue --- core/src/mindustry/client/ui/SchematicBrowserDialog.java | 2 +- core/src/mindustry/ui/dialogs/SchematicsDialog.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/mindustry/client/ui/SchematicBrowserDialog.java b/core/src/mindustry/client/ui/SchematicBrowserDialog.java index 735cc02c8a..5e5d2025f4 100644 --- a/core/src/mindustry/client/ui/SchematicBrowserDialog.java +++ b/core/src/mindustry/client/ui/SchematicBrowserDialog.java @@ -316,7 +316,7 @@ public void showExport(Schematic s){ platform.export(s.name(), schematicExtension, file -> Schematics.write(s, file)); }).marginLeft(12f); t.row(); - t.button("@schematic.chatshare", Icon.bookOpen, style, () -> { + t.button("@client.schematic.chatshare", Icon.bookOpen, style, () -> { if (!state.isPlaying()) return; dialog.hide(); clientThread.post(() -> Main.INSTANCE.send(new SchematicTransmission(s), () -> Core.app.post(() -> diff --git a/core/src/mindustry/ui/dialogs/SchematicsDialog.java b/core/src/mindustry/ui/dialogs/SchematicsDialog.java index bfa69f588f..013e8b0454 100644 --- a/core/src/mindustry/ui/dialogs/SchematicsDialog.java +++ b/core/src/mindustry/ui/dialogs/SchematicsDialog.java @@ -334,7 +334,7 @@ public void showExport(Schematic s){ platform.export(s.name(), schematicExtension, file -> Schematics.write(s, file)); }).marginLeft(12f); t.row(); - t.button("@schematic.chatshare", Icon.bookOpen, style, () -> { + t.button("@client.schematic.chatshare", Icon.bookOpen, style, () -> { if (!state.isPlaying()) return; dialog.hide(); clientThread.post(() -> Main.INSTANCE.send(new SchematicTransmission(s), () -> Core.app.post(() ->