From abce0b2af7be82e99db5e8f264f7d55db09b024a Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 4 May 2017 21:37:22 +0100 Subject: [PATCH] [server] Add plane name property to Chunk for serialistion purposes.... which doesn't appear to be working right. Hrm. --- Nibriboard/RippleSpace/Chunk.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Nibriboard/RippleSpace/Chunk.cs b/Nibriboard/RippleSpace/Chunk.cs index 3b48f2f..9de1116 100644 --- a/Nibriboard/RippleSpace/Chunk.cs +++ b/Nibriboard/RippleSpace/Chunk.cs @@ -44,6 +44,16 @@ namespace Nibriboard.RippleSpace /// private Plane plane; + /// + /// The name of the plane that this chunk is on. + /// + /// The name of the plane. + public string PlaneName { + get { + return plane.Name; + } + } + /// /// The lines that this chunk currently contains. ///