Explicit null for CurrentCostume

This commit is contained in:
Sanae 2022-02-12 17:37:26 -06:00
parent 6d257ba04c
commit d8e151712d
1 changed files with 1 additions and 1 deletions

View File

@ -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;