From d82d19be68391b62e47f605b700ecb639a985e97 Mon Sep 17 00:00:00 2001 From: mschiller890 Date: Wed, 11 Mar 2026 19:38:53 +0200 Subject: [PATCH] Updated the Discord link (and removed color tags cuz they were messing up the URL) --- src/client/gui/screens/CreditsScreen.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/gui/screens/CreditsScreen.cpp b/src/client/gui/screens/CreditsScreen.cpp index 1412fff..ae2c224 100644 --- a/src/client/gui/screens/CreditsScreen.cpp +++ b/src/client/gui/screens/CreditsScreen.cpp @@ -38,7 +38,8 @@ void CreditsScreen::init() { _lines.push_back("InviseDivine"); _lines.push_back("Kolyah35"); _lines.push_back(""); - _lines.push_back("[Gold]Join our Discord server:[/Gold] [Green]url.....[/Green]"); + // avoid color tags around the URL so it isn't mangled by the parser please + _lines.push_back("Join our Discord server: https://discord.gg/c58YesBxve"); _scrollSpeed = 0.5f; _scrollY = height; // start below screen }