diff --git a/core/assets/bundles/global.properties b/core/assets/bundles/global.properties index 3c66383d21..ac3de50ccb 100644 --- a/core/assets/bundles/global.properties +++ b/core/assets/bundles/global.properties @@ -27,7 +27,7 @@ sector.saltFlats.credit = Dexapnow sector.windsweptIslands.credit = Stormride_R sector.navalFortress.credit = blackberry2093 sector.desolateRift.credit = hhh i 17 -sector.extractionOutpost.credit = coaldeficit, wpx +sector.extractionOutpost.credit = CD, wpx sector.origin.credit = Mechanical Fishe sector.karst.credit = Mechanical Fishe diff --git a/core/src/mindustry/ui/dialogs/ContentInfoDialog.java b/core/src/mindustry/ui/dialogs/ContentInfoDialog.java index bac748bdcf..b1aab84fae 100644 --- a/core/src/mindustry/ui/dialogs/ContentInfoDialog.java +++ b/core/src/mindustry/ui/dialogs/ContentInfoDialog.java @@ -1,6 +1,7 @@ package mindustry.ui.dialogs; import arc.*; +import arc.graphics.*; import arc.scene.actions.*; import arc.scene.ui.*; import arc.scene.ui.layout.*; @@ -103,6 +104,12 @@ public class ContentInfoDialog extends BaseDialog{ table.row(); } + //TODO: move this into a final end-game credit sequence. this is temporary and thus not localized + if(content.credit != null){ + table.row(); + table.add("Created by: " + content.credit).color(Color.gray).padTop(40f).row(); + } + if(settings.getBool("console")){ table.button("@viewfields", Icon.link, Styles.grayt, () -> { Class contentClass = content.getClass();