summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockDoor.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-12-25 01:00:51 +0100
committerMattes D <github@xoft.cz>2014-12-25 01:00:51 +0100
commit9e478c6f29702002c227dc06c0a1f49d1568de53 (patch)
tree65a7f96945e955524f52ab3ed98a1207994ba237 /src/Blocks/BlockDoor.h
parentFixed forgotten big flower handler. (diff)
downloadcuberite-9e478c6f29702002c227dc06c0a1f49d1568de53.tar
cuberite-9e478c6f29702002c227dc06c0a1f49d1568de53.tar.gz
cuberite-9e478c6f29702002c227dc06c0a1f49d1568de53.tar.bz2
cuberite-9e478c6f29702002c227dc06c0a1f49d1568de53.tar.lz
cuberite-9e478c6f29702002c227dc06c0a1f49d1568de53.tar.xz
cuberite-9e478c6f29702002c227dc06c0a1f49d1568de53.tar.zst
cuberite-9e478c6f29702002c227dc06c0a1f49d1568de53.zip
Diffstat (limited to 'src/Blocks/BlockDoor.h')
-rw-r--r--src/Blocks/BlockDoor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Blocks/BlockDoor.h b/src/Blocks/BlockDoor.h
index 334519077..53f84b553 100644
--- a/src/Blocks/BlockDoor.h
+++ b/src/Blocks/BlockDoor.h
@@ -117,7 +117,8 @@ public:
static bool CanBeOn(BLOCKTYPE a_BlockType)
{
// Vanilla refuses to place doors on transparent blocks
- return !cBlockInfo::IsTransparent(a_BlockType);
+ // We need to keep the door compatible with itself, otherwise the top half drops while the bottom half stays
+ return !cBlockInfo::IsTransparent(a_BlockType) || IsDoorBlockType(a_BlockType);
}