diff --git a/yogstation/code/game/world.dm b/yogstation/code/game/world.dm
index ede0c75fd43b..19f4643c9869 100644
--- a/yogstation/code/game/world.dm
+++ b/yogstation/code/game/world.dm
@@ -40,16 +40,17 @@ GLOBAL_LIST_EMPTY(donators)
var/s = ""
var/server_name = CONFIG_GET(string/servername)
if (server_name)
- s += "
[server_name] — New Player Friendly — 99% Lag Free!!"
- s += "
(Forums|Discord)" // The Forum & Discord links line
- s += "
Time: [gameTimestamp("hh:mm")]"
- s += "
Map: [SSmapping?.config?.map_name || "Unknown"]"
- s += "
Alert: [capitalize(get_security_level())]"
- s += "
[pick(world.file2list("yogstation/strings/taglines.txt"))]
"
+ s += "[server_name]\] — Dive in Now: Perfect for Beginners!"
+ s += "
99% Lag-Free MRP Experience! Join the Adventure!"
+ s += "
Time: [gameTimestamp("hh:mm")] | Map: [SSmapping?.config?.map_name || "Unknown"] | Alert: [capitalize(get_security_level())]"
+ s += "
\[Website" // link to our website so they can join forums + discord from here
+ //As of October 27th, 2023 taglines.txt is no longer used in the status because we never had the characters to spare it, so it would put 2-3 random characters at the end and look bad.
//PLAYER COUNT
+
var/players = GLOB.clients.len
+ /*
var/popcaptext = ""
if(players)
popcaptext = "~[players] player\s"
@@ -59,11 +60,17 @@ GLOBAL_LIST_EMPTY(donators)
s += "\[[popcaptext][queuetext]"
+ */
+
+ /*
+
//HOST
var/hostedby = CONFIG_GET(string/hostedby)
if (!host && hostedby)
s += " hosted by [hostedby]"
+ */
+
//RETURN
status = s
game_state = (CONFIG_GET(number/extreme_popcap) && players >= CONFIG_GET(number/extreme_popcap)) //tells the hub if we are full