1
0
Fork 0
mirror of https://github.com/sbrl/Nibriboard.git synced 2018-01-10 21:33:49 +00:00

[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

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()
{ {