summaryrefslogtreecommitdiffstats
path: root/source/Blocks/BlockRedstoneRepeater.cpp
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2013-09-22 19:18:04 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2013-09-22 19:18:04 +0200
commit9d46fa6ae9718f51f9031111c4f28ffd7e6ecc0f (patch)
tree57f96f1fef5c4910622e7bae9a897a74f507576b /source/Blocks/BlockRedstoneRepeater.cpp
parentFixed pickup block spawning (diff)
downloadcuberite-9d46fa6ae9718f51f9031111c4f28ffd7e6ecc0f.tar
cuberite-9d46fa6ae9718f51f9031111c4f28ffd7e6ecc0f.tar.gz
cuberite-9d46fa6ae9718f51f9031111c4f28ffd7e6ecc0f.tar.bz2
cuberite-9d46fa6ae9718f51f9031111c4f28ffd7e6ecc0f.tar.lz
cuberite-9d46fa6ae9718f51f9031111c4f28ffd7e6ecc0f.tar.xz
cuberite-9d46fa6ae9718f51f9031111c4f28ffd7e6ecc0f.tar.zst
cuberite-9d46fa6ae9718f51f9031111c4f28ffd7e6ecc0f.zip
Diffstat (limited to 'source/Blocks/BlockRedstoneRepeater.cpp')
-rw-r--r--source/Blocks/BlockRedstoneRepeater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Blocks/BlockRedstoneRepeater.cpp b/source/Blocks/BlockRedstoneRepeater.cpp
index 5e491ee5a..8cfb48f4d 100644
--- a/source/Blocks/BlockRedstoneRepeater.cpp
+++ b/source/Blocks/BlockRedstoneRepeater.cpp
@@ -30,7 +30,7 @@ void cBlockRedstoneRepeaterHandler::OnDestroyed(cWorld *a_World, int a_BlockX, i
void cBlockRedstoneRepeaterHandler::OnUse(cWorld *a_World, cPlayer *a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ)
{
- a_World->FastSetBlock(a_BlockX, a_BlockY, a_BlockZ, m_BlockType, ((a_World->GetBlockMeta(a_BlockX, a_BlockY, a_BlockZ) + 0x04) & 0x0f));
+ a_World->SetBlockMeta(a_BlockX, a_BlockY, a_BlockZ, ((a_World->GetBlockMeta(a_BlockX, a_BlockY, a_BlockZ) + 0x04) & 0x0f));
}