private void PlayerListTimerTick(object sender, ElapsedEventArgs e)
        {
            RemoteConsole rcon   = new RemoteConsole(serverIP, serverPort, serverPassword);
            ServerStatus  status = rcon.GetStatus();

            BeginInvoke(new Action(() => UpdatePlayerList(status.PlayerList)));
        }