Skip to content

Commit

Permalink
Fix bundle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
BalaM314 committed Jun 4, 2024
1 parent 4faf6ed commit d7b2175
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/mindustry/client/ui/SchematicBrowserDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -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(() ->
Expand Down
2 changes: 1 addition & 1 deletion core/src/mindustry/ui/dialogs/SchematicsDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -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(() ->
Expand Down

0 comments on commit d7b2175

Please sign in to comment.