mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-22 03:05:16 +00:00
Explicit null for CurrentCostume
This commit is contained in:
parent
6d257ba04c
commit
d8e151712d
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ public class Client : IDisposable {
|
|||
public readonly Dictionary<string, object> Metadata = new Dictionary<string, object>(); // can be used to store any information about a player
|
||||
public bool Connected = false;
|
||||
|
||||
public CostumePacket? CurrentCostume;
|
||||
public CostumePacket? CurrentCostume = null;
|
||||
|
||||
public Guid Id;
|
||||
public Socket? Socket;
|
||||
|
|
Loading…
Reference in a new issue