From 2a8e1696ab3e471022736120d53ba41fe89f27c9 Mon Sep 17 00:00:00 2001 From: Sanae Date: Tue, 15 Mar 2022 15:02:27 -0600 Subject: [PATCH] Remove another useless log --- Server/Client.cs | 2 +- Server/Settings.cs | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Server/Client.cs b/Server/Client.cs index 82310bd..79211a9 100644 --- a/Server/Client.cs +++ b/Server/Client.cs @@ -51,7 +51,7 @@ public class Client : IDisposable { public async Task Send(ReadOnlyMemory data, Client? sender) { if (!Connected) { - Server.Logger.Info($"Didn't send {MemoryMarshal.Read(data.Span[16..])} to {Id} because they weren't connected yet"); + // Server.Logger.Info($"Didn't send {MemoryMarshal.Read(data.Span[16..])} to {Id} because they weren't connected yet"); return; } diff --git a/Server/Settings.cs b/Server/Settings.cs index 1e60ca7..710aef0 100644 --- a/Server/Settings.cs +++ b/Server/Settings.cs @@ -53,6 +53,11 @@ public class Settings { public bool MergeEnabled { get; set; } = false; } + public class HiddenPlayers { + public List Players { get; set; } = new List(); + public bool Enabled { get; set; } = false; + } + public class FlipTable { public List Players { get; set; } = new List(); public bool Enabled { get; set; } = true;