summaryrefslogtreecommitdiffstats
path: root/source/Blocks
diff options
context:
space:
mode:
authorluksor111@gmail.com <luksor111@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-12-21 19:05:34 +0100
committerluksor111@gmail.com <luksor111@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-12-21 19:05:34 +0100
commit994b02f5af05158f6da3964dee5f00e6f00ae981 (patch)
tree970d2c31a3736e064fc7d6da525bfa0f44c5e606 /source/Blocks
parentAdded more constants into eEntityType; made them a compulsory parameter to the constructor, so that all entities have proper type. (diff)
downloadcuberite-994b02f5af05158f6da3964dee5f00e6f00ae981.tar
cuberite-994b02f5af05158f6da3964dee5f00e6f00ae981.tar.gz
cuberite-994b02f5af05158f6da3964dee5f00e6f00ae981.tar.bz2
cuberite-994b02f5af05158f6da3964dee5f00e6f00ae981.tar.lz
cuberite-994b02f5af05158f6da3964dee5f00e6f00ae981.tar.xz
cuberite-994b02f5af05158f6da3964dee5f00e6f00ae981.tar.zst
cuberite-994b02f5af05158f6da3964dee5f00e6f00ae981.zip
Diffstat (limited to 'source/Blocks')
-rw-r--r--source/Blocks/BlockLever.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/source/Blocks/BlockLever.cpp b/source/Blocks/BlockLever.cpp
index 925a5bdcd..cf0255df5 100644
--- a/source/Blocks/BlockLever.cpp
+++ b/source/Blocks/BlockLever.cpp
@@ -40,7 +40,16 @@ void cBlockLeverHandler::OnDestroyed(cWorld *a_World, int a_BlockX, int a_BlockY
void cBlockLeverHandler::OnUse(cWorld *a_World, cPlayer *a_Player, int a_BlockX, int a_BlockY, int a_BlockZ)
{
//Flip the ON bit on/off. Using XOR bitwise operation to turn it on/off.
- a_World->SetBlock(a_BlockX, a_BlockY, a_BlockZ, m_BlockType, ((a_World->GetBlockMeta(a_BlockX, a_BlockY, a_BlockZ) ^ 0x08) & 0x0f));
+ NIBBLETYPE Meta = ((a_World->GetBlockMeta(a_BlockX, a_BlockY, a_BlockZ) ^ 0x08) & 0x0f);
+ a_World->SetBlock(a_BlockX, a_BlockY, a_BlockZ, m_BlockType, Meta);
+ if(Meta & 0x08)
+ {
+ a_World->BroadcastSoundEffect("random.click", a_BlockX * 8, a_BlockY * 8, a_BlockZ * 8, 0.5f, 0.6f);
+ }
+ else
+ {
+ a_World->BroadcastSoundEffect("random.click", a_BlockX * 8, a_BlockY * 8, a_BlockZ * 8, 0.5f, 0.5f);
+ }
}