Remove another useless log

This commit is contained in:
Sanae 2022-03-15 15:02:27 -06:00
parent 8d11623ada
commit 2a8e1696ab
2 changed files with 6 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public class Client : IDisposable {
public async Task Send(ReadOnlyMemory<byte> data, Client? sender) {
if (!Connected) {
Server.Logger.Info($"Didn't send {MemoryMarshal.Read<PacketType>(data.Span[16..])} to {Id} because they weren't connected yet");
// Server.Logger.Info($"Didn't send {MemoryMarshal.Read<PacketType>(data.Span[16..])} to {Id} because they weren't connected yet");
return;
}

View File

@ -53,6 +53,11 @@ public class Settings {
public bool MergeEnabled { get; set; } = false;
}
public class HiddenPlayers {
public List<Guid> Players { get; set; } = new List<Guid>();
public bool Enabled { get; set; } = false;
}
public class FlipTable {
public List<Guid> Players { get; set; } = new List<Guid>();
public bool Enabled { get; set; } = true;