1
0
Fork 0

[server] Initialise value of list in message object

This commit is contained in:
Starbeamrainbowlabs 2017-04-28 18:22:33 +01:00
parent 2ded353c12
commit 4954d53523
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ namespace Nibriboard.Client.Messages
/// <summary> /// <summary>
/// A list of planes that this nibriboard server currently has. /// A list of planes that this nibriboard server currently has.
/// </summary> /// </summary>
public List<string> Planes; public List<string> Planes = new List<string>();
public HandshakeResponseMessage() public HandshakeResponseMessage()
{ {