From 31466fda5f55b8202ae8599ae437337321dba547 Mon Sep 17 00:00:00 2001 From: bibo38 Date: Thu, 25 Jun 2015 16:17:03 +0200 Subject: Doors now get placed on the server-side. The Y-Value is already the lower door block(From ItemHandler.cpp:346). Increasing it once again, places the door into the air, which is blocked by Cuberite. Bugfix #2279 --- src/Items/ItemDoor.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Items/ItemDoor.h b/src/Items/ItemDoor.h index 2e4767349..e92c567fb 100644 --- a/src/Items/ItemDoor.h +++ b/src/Items/ItemDoor.h @@ -32,7 +32,6 @@ public: { return false; } - AddFaceDirection(a_BlockX, a_BlockY, a_BlockZ, a_BlockFace); // Door (bottom block) can be placed in Y range of [1, 254]: if ((a_BlockY < 1) || (a_BlockY >= cChunkDef::Height - 2)) -- cgit v1.2.3