From afb3763eab690e795dd95adef08af7dc6284e161 Mon Sep 17 00:00:00 2001 From: "alex.ita" <153282308+AlexITA1100@users.noreply.github.com> Date: Wed, 14 Feb 2024 11:51:24 +0100 Subject: [PATCH] Update TConfig.cpp --- src/TConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TConfig.cpp b/src/TConfig.cpp index 2e39f3a..14c02e6 100644 --- a/src/TConfig.cpp +++ b/src/TConfig.cpp @@ -143,7 +143,7 @@ void TConfig::FlushToFile() { SetComment(data["Misc"][StrSendErrorsMessageEnabled.data()].comments(), " You can turn on/off the SendErrors message you get on startup here"); std::stringstream Ss; Ss << "# This is the BeamMP-Server config file.\n" - "# Help & Documentation: `https://wiki.beammp.com/en/home/server-maintenance`\n" + "# Help & Documentation: `https://docs.beammp.com/server/server-maintenance/`\n" "# IMPORTANT: Fill in the AuthKey with the key you got from `https://keymaster.beammp.com/` on the left under \"Keys\"\n" << data; auto File = std::fopen(mConfigFileName.c_str(), "w+");