diff --git a/code/game/world.dm b/code/game/world.dm
index 24b4a543e98..f8fbbb45c30 100644
--- a/code/game/world.dm
+++ b/code/game/world.dm
@@ -480,57 +480,26 @@ var/global/shutdown_processed = FALSE
/world/proc/update_status()
var/s = ""
- if (config && config.server_name)
- s += "[config.server_name] — "
-
- s += "[station_name()]";
-
if (config && config.siteurl)
- s += " ("
- s += "" //Change this to wherever you want the hub to link to.
- s += "site" //Replace this with something else. Or ever better, delete it and uncomment the game version.
- s += ""
- s += ")"
-
- var/list/features = list()
-
- if(SSticker)
- if(master_mode)
- features += master_mode
- else
- features += "STARTING"
+ s += ""
- if (LAZYACCESS(SSlag_switch.measures, DISABLE_NON_OBSJOBS))
- features += "closed"
+ s += ""
- features += abandon_allowed ? "respawn" : "no respawn"
-
- if (config && config.allow_ai)
- features += "AI allowed"
+ if (config && config.server_name)
+ s += "[config.server_name] — "
- var/n = 0
- for (var/mob/M in player_list)
- if (M.client)
- n++
+ s += "[station_name()]"
- if (n > 1)
- features += "~[n] players"
- else if (n > 0)
- features += "~[n] player"
+ if (config && config.siteurl)
+ s += "";
- /*
- is there a reason for this? the byond site shows 'hosted by X' when there is a proper host already.
- if (host)
- features += "hosted by [host]"
- */
+ s += "
Roleplay: Medium"
- if (!host && config && config.hostedby)
- features += "hosted by [config.hostedby]"
+ s += "
Round Duration: [roundduration2text()]"
- if (features)
- s += ": [jointext(features, ", ")]"
+ if (config && config.changelog_link)
+ s += "
Recent changes"
- /* does this help? I do not know */
if (src.status != s)
src.status = s
@@ -662,7 +631,7 @@ var/global/failed_db_connections = 0
packet_data["secret"] = "SECRET"
log_href("WTOPIC: NET ANNOUNCE: \"[list2params(packet_data)]\", from:[sender]")
-
+
return proccess_net_announce(packet_data["type"], packet_data, sender)
/world/proc/proccess_net_announce(type, list/data, sender)