From 41e1a08984a9313ba0d07619a89b0cdf91e03f4c Mon Sep 17 00:00:00 2001 From: ChillerDragon Date: Wed, 7 Feb 2024 13:05:18 +0800 Subject: [PATCH] Change server log from "connecting online" to "connection online" The client already says "got accept. connection online" and "connecting online" sounds a bit weird. I asked some natives and they told me "connection established" is the most badass way of saying it. But I rather keep the change as minimal as possible. This is a breaking change for users parsing the logs. --- src/engine/shared/network_conn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/shared/network_conn.cpp b/src/engine/shared/network_conn.cpp index d101e7003d..de1b1c8e54 100644 --- a/src/engine/shared/network_conn.cpp +++ b/src/engine/shared/network_conn.cpp @@ -350,7 +350,7 @@ int CNetConnection::Feed(CNetPacketConstruct *pPacket, NETADDR *pAddr) m_LastRecvTime = Now; m_State = NET_CONNSTATE_ONLINE; if(Config()->m_Debug) - dbg_msg("connection", "connecting online"); + dbg_msg("connection", "connection online"); } }