diff --git a/core/src/mindustry/game/Objectives.java b/core/src/mindustry/game/Objectives.java index af420636b6..f50c8c0ca1 100644 --- a/core/src/mindustry/game/Objectives.java +++ b/core/src/mindustry/game/Objectives.java @@ -26,7 +26,7 @@ public class Objectives{ public String display(){ return Core.bundle.format("requirement.research", //TODO broken for multi tech nodes. - (content.techNode == null || content.techNode.parent == null || content.techNode.parent.content.unlocked()) && !(content instanceof Item) ? + (content.techNode == null || content.techNode.parent == null || content.techNode.parent.content.unlocked()) ? (content.emoji() + " " + content.localizedName) : "???"); } }