summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemRedstoneDust.h
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2014-01-11 02:51:24 +0100
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2014-01-11 02:51:24 +0100
commitb068b73ad9cce7a5150c589b66d6465a8a4d0b90 (patch)
tree2d6a5be4229ca18171a7d6e41a9287f7f191ca94 /src/Items/ItemRedstoneDust.h
parentFixed doors, fixes #453 (diff)
downloadcuberite-b068b73ad9cce7a5150c589b66d6465a8a4d0b90.tar
cuberite-b068b73ad9cce7a5150c589b66d6465a8a4d0b90.tar.gz
cuberite-b068b73ad9cce7a5150c589b66d6465a8a4d0b90.tar.bz2
cuberite-b068b73ad9cce7a5150c589b66d6465a8a4d0b90.tar.lz
cuberite-b068b73ad9cce7a5150c589b66d6465a8a4d0b90.tar.xz
cuberite-b068b73ad9cce7a5150c589b66d6465a8a4d0b90.tar.zst
cuberite-b068b73ad9cce7a5150c589b66d6465a8a4d0b90.zip
Diffstat (limited to 'src/Items/ItemRedstoneDust.h')
-rw-r--r--src/Items/ItemRedstoneDust.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Items/ItemRedstoneDust.h b/src/Items/ItemRedstoneDust.h
index 38bf00ba6..de90c8075 100644
--- a/src/Items/ItemRedstoneDust.h
+++ b/src/Items/ItemRedstoneDust.h
@@ -27,7 +27,7 @@ public:
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
) override
{
- if (!g_BlockIsTorchPlaceable[a_World->GetBlock(a_BlockX, a_BlockY - 1, a_BlockZ)]) // Some solid blocks, such as cocoa beans, are not suitable for dust
+ if (!g_BlockFullyOccupiesVoxel[a_World->GetBlock(a_BlockX, a_BlockY - 1, a_BlockZ)]) // Some solid blocks, such as cocoa beans, are not suitable for dust
{
return false;
}