From 46f05069c625b0f83031d4588db39e3ce4ebf217 Mon Sep 17 00:00:00 2001 From: BuildTools <18whitechristop@gmail.com> Date: Sun, 11 Jun 2017 02:40:32 -0700 Subject: [PATCH] Change lobby branding to stratus --- .../main/java/tc/oc/commons/core/format/GeneralFormatter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Commons/core/src/main/java/tc/oc/commons/core/format/GeneralFormatter.java b/Commons/core/src/main/java/tc/oc/commons/core/format/GeneralFormatter.java index 55dc303..950e8f3 100644 --- a/Commons/core/src/main/java/tc/oc/commons/core/format/GeneralFormatter.java +++ b/Commons/core/src/main/java/tc/oc/commons/core/format/GeneralFormatter.java @@ -11,13 +11,13 @@ public class GeneralFormatter { @Inject private GeneralFormatter() {} - private final Component brandName = new Component("PGM", GOLD); + private final Component brandName = new Component("Stratus", GOLD); public BaseComponent brandName() { return brandName; } public String publicHostname() { - return "localhost"; // TODO: configurable + return "play.stratus.network"; // TODO: configurable } }