When a new player joins it is being sent all the client info of the currently connected tees. This is marked as non silent which is misleading because the client does not actually print these as join messages. The reason why the client does not print it is because it does not have its m_LocalClientID set yet.
Setting it explicitly to silent makes it more obvious that this is not printing a chat message when reading the server code.
This change will not change anything that can be witnes...