diff options
author | Bond-009 <bond.009@outlook.com> | 2018-01-17 20:15:42 +0100 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2018-01-17 20:15:42 +0100 |
commit | 701fee334ce6b83ad7e555767d04f14c5dc60766 (patch) | |
tree | 0f4a0c0e0bc815404e752a46ff4c4d7bec76a31f /src/Items/ItemDoor.h | |
parent | Add world name in logs from cWorld (#4148) (diff) | |
download | cuberite-701fee334ce6b83ad7e555767d04f14c5dc60766.tar cuberite-701fee334ce6b83ad7e555767d04f14c5dc60766.tar.gz cuberite-701fee334ce6b83ad7e555767d04f14c5dc60766.tar.bz2 cuberite-701fee334ce6b83ad7e555767d04f14c5dc60766.tar.lz cuberite-701fee334ce6b83ad7e555767d04f14c5dc60766.tar.xz cuberite-701fee334ce6b83ad7e555767d04f14c5dc60766.tar.zst cuberite-701fee334ce6b83ad7e555767d04f14c5dc60766.zip |
Diffstat (limited to 'src/Items/ItemDoor.h')
-rw-r--r-- | src/Items/ItemDoor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Items/ItemDoor.h b/src/Items/ItemDoor.h index a74997b7d..9cf67dd0e 100644 --- a/src/Items/ItemDoor.h +++ b/src/Items/ItemDoor.h @@ -97,6 +97,7 @@ public: if ( cBlockDoorHandler::IsDoorBlockType(LeftNeighborBlock) || // The block to the left is a door block ( + !cBlockInfo::IsSolid(LeftNeighborBlock) && // Prioritize hinge on the left side cBlockInfo::IsSolid(RightNeighborBlock) && // The block to the right is solid... !cBlockDoorHandler::IsDoorBlockType(RightNeighborBlock) // ... but not a door ) |