added fun Agatha Christie reference for nerds.

(default system name is U.N. Owen)
This commit is contained in:
Jonas 2022-04-06 23:47:14 +02:00
parent d114d69595
commit f26bdec457

View File

@ -34,9 +34,9 @@ public class Client {
try {
systemName = System.getProperty("user.name");
} catch (Exception e) {
systemName = "Unknown User";
systemName = "U.N. Owen";
}
if (systemName == null) systemName = "Unknown User";
if (systemName == null) systemName = "U.N. Owen";
sendMsgToServer("LOGON$" + systemName);
clientPinger = new ClientPinger(this, this.socket);