From d8e151712dd85df6c38c168e228be372384f9306 Mon Sep 17 00:00:00 2001 From: Sanae Date: Sat, 12 Feb 2022 17:37:26 -0600 Subject: [PATCH] Explicit null for CurrentCostume --- Server/Client.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/Client.cs b/Server/Client.cs index 57ae8e0..0668072 100644 --- a/Server/Client.cs +++ b/Server/Client.cs @@ -9,7 +9,7 @@ public class Client : IDisposable { public readonly Dictionary Metadata = new Dictionary(); // 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;