diff --git a/server/src/Configuration.cpp b/server/src/Configuration.cpp index e7c8cde..bbfe4cd 100644 --- a/server/src/Configuration.cpp +++ b/server/src/Configuration.cpp @@ -1100,17 +1100,18 @@ std::deque> config::create_bindings() { BIND_GROUP(query); { CREATE_BINDING("nl_char", 0); - BIND_STRING(config::query::newlineCharacter, "\r\n"); + BIND_STRING(config::query::newlineCharacter, "\n"); ADD_DESCRIPTION("Change the query newline character"); + ADD_NOTE("NOTE: TS3 - Compatible bots may require \"\n\r\""); } { CREATE_BINDING("motd", 0); - BIND_STRING(config::query::motd, "TeaSpeak\r\nWelcome on the TeaSpeak ServerQuery interface.\r\n"); + BIND_STRING(config::query::motd, "TeaSpeak\nWelcome on the TeaSpeak ServerQuery interface.\n"); ADD_DESCRIPTION("The query welcome message"); ADD_NOTE("If not like TeamSpeak then some applications may not recognize the Query"); ADD_NOTE("Default TeamSpeak 3 MOTD:"); - ADD_NOTE("TS3\r\nWelcome to the TeamSpeak 3 ServerQuery interface, type \"help\" for a list of commands and \"help \" for information on a specific command.\r\n"); + ADD_NOTE("TS3\n\rWelcome to the TeamSpeak 3 ServerQuery interface, type \"help\" for a list of commands and \"help \" for information on a specific command.\n\r"); ADD_NOTE("NOTE: Sometimes you have to append one \r\n more!"); } {