diff options
author | luksor111@gmail.com <luksor111@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-12-21 19:05:34 +0100 |
---|---|---|
committer | luksor111@gmail.com <luksor111@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-12-21 19:05:34 +0100 |
commit | 994b02f5af05158f6da3964dee5f00e6f00ae981 (patch) | |
tree | 970d2c31a3736e064fc7d6da525bfa0f44c5e606 /source/Blocks/BlockLever.cpp | |
parent | Added more constants into eEntityType; made them a compulsory parameter to the constructor, so that all entities have proper type. (diff) | |
download | cuberite-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 '')
-rw-r--r-- | source/Blocks/BlockLever.cpp | 11 |
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);
+ }
}
|