mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-22 03:05:16 +00:00
Remove another useless log
This commit is contained in:
parent
8d11623ada
commit
2a8e1696ab
2 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue