From 269bf6f4fc2928b0e555c18bf3cca9fbf3be1720 Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Sat, 17 Jan 2026 16:59:36 +0100 Subject: [PATCH] fix links in motd (#19032) --- code/controllers/configuration/configuration.dm | 1 + config/example/motd.txt | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm index 116dbd811a9..81f6063c7b0 100644 --- a/code/controllers/configuration/configuration.dm +++ b/code/controllers/configuration/configuration.dm @@ -326,6 +326,7 @@ DelayedMessageAdmins("MOTD file [motd_file] didn't exist") motd = motd_contents.Join("\n") + motd = GLOB.is_valid_url.Replace(motd, span_linkify("$1")) var/tm_info = GLOB.revdata.GetTestMergeInfo() if(motd || tm_info) diff --git a/config/example/motd.txt b/config/example/motd.txt index 622fdafcbe3..76972e4f2e9 100644 --- a/config/example/motd.txt +++ b/config/example/motd.txt @@ -1,5 +1,5 @@

Welcome to Space Station 13!

--This server is running the Polaris modification of the Baystation12 SS13 code. +-This server is running the https://ss13polaris.com modification of the https://baystation12.net SS13 code.

-Bugtracker: for posting of bugs and issues. +Bugtracker: https://github.com/PolarisSS13/Polaris/issues for posting of bugs and issues.