From fae7f17c426191d621c8e33688fac0fa6392768e Mon Sep 17 00:00:00 2001 From: melchior Date: Fri, 5 Jun 2020 19:31:48 -0400 Subject: [PATCH] Added missing paramless constructor (needed by pbuf) --- Automap/Data/JSON/BlockPosJson.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Automap/Data/JSON/BlockPosJson.cs b/Automap/Data/JSON/BlockPosJson.cs index f1879d6..5bdb556 100644 --- a/Automap/Data/JSON/BlockPosJson.cs +++ b/Automap/Data/JSON/BlockPosJson.cs @@ -12,11 +12,15 @@ namespace Automap [ProtoContract] public class BlockPosJson : BlockPos { - public BlockPosJson(BlockPos orig) : base(x: orig.X, y: orig.Y, z: orig.Z) + + public BlockPosJson( ) { + } - + public BlockPosJson(BlockPos orig) : base(x: orig.X, y: orig.Y, z: orig.Z) + { + } } /// -- 2.11.0