diff --git a/core/src/io/anuke/mindustry/ui/Links.java b/core/src/io/anuke/mindustry/ui/Links.java index 670ca4e76e..dda50bf394 100644 --- a/core/src/io/anuke/mindustry/ui/Links.java +++ b/core/src/io/anuke/mindustry/ui/Links.java @@ -38,7 +38,8 @@ public class Links{ public LinkEntry(String name, String link, Color color){ this.name = name; this.color = color; - this.description = Core.bundle.getNotNull("link." + name + ".description"); + String desc = Core.bundle.getOrNull("link." + name + ".description"); + this.description = desc != null ? desc : "link." + name + ".description"; this.link = link; String title = Core.bundle.getOrNull("link." + name + ".title");