diff --git a/build.gradle b/build.gradle index 2c1d30bc28..4926701337 100644 --- a/build.gradle +++ b/build.gradle @@ -154,12 +154,10 @@ project(":core") { compileOnly project(":annotations") build.finalizedBy(finish) - boolean comp = System.properties["release"] == null || System.properties["release"] == "false" + def comp = System.properties["release"] == null || System.properties["release"] == "false" if(!comp){ - println("NOTICE: Compiling release build.") - }else{ - println("Compiling DEBUG build.") + println("Note: Compiling release build.") } if(new File(projectDir.parent, '../uCore').exists() && comp){ diff --git a/core/assets/bundles/bundle.properties b/core/assets/bundles/bundle.properties index f220972fba..1873d1a0cd 100644 --- a/core/assets/bundles/bundle.properties +++ b/core/assets/bundles/bundle.properties @@ -1,4 +1,4 @@ -text.about=Created by [ROYAL]Anuken[] - [SKY]anukendev@gmail.com[] +text.credits.text=Created by [ROYAL]Anuken[] - [SKY]anukendev@gmail.com[]\n\n[GRAY](In case you can't tell, this text is currently unfinished.\nTranslators, don't edit it yet!) text.credits=Credits text.discord=Join the mindustry discord! text.link.discord.description=the official Mindustry discord chatroom @@ -530,3 +530,4 @@ block.liquid-junction.name=Liquid Junction block.bridge-conduit.name=Bridge Conduit block.rotary-pump.name=Rotary Pump block.nuclear-reactor.name=Nuclear Reactor +block.interceptor-factory.name=Interceptor Factory diff --git a/core/src/io/anuke/mindustry/ui/dialogs/AboutDialog.java b/core/src/io/anuke/mindustry/ui/dialogs/AboutDialog.java index ed489a0630..afcf8abfd3 100644 --- a/core/src/io/anuke/mindustry/ui/dialogs/AboutDialog.java +++ b/core/src/io/anuke/mindustry/ui/dialogs/AboutDialog.java @@ -93,7 +93,7 @@ public class AboutDialog extends FloatingDialog{ public void showCredits(){ FloatingDialog dialog = new FloatingDialog("$text.credits"); dialog.addCloseButton(); - dialog.content().add("$text.about"); + dialog.content().add("$text.credits.text"); dialog.show(); } }