summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemRedstoneDust.h
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2014-01-12 13:38:41 +0100
committerAlexander Harkness <bearbin@gmail.com>2014-01-12 13:38:41 +0100
commit273db55bdfe789e18601417931dd89bd6cd94b83 (patch)
tree537a559bcd7f18e0aad2b853f223f06404309ee7 /src/Items/ItemRedstoneDust.h
parentMerge pull request #533 from mc-server/CmakeMultiConfig (diff)
parentFixed rails powering (diff)
downloadcuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.gz
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.bz2
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.lz
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.xz
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.tar.zst
cuberite-273db55bdfe789e18601417931dd89bd6cd94b83.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;
}