summaryrefslogtreecommitdiffstats
path: root/source/Blocks/BlockVine.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-08-25 16:11:19 +0200
committermadmaxoft <github@xoft.cz>2013-08-25 16:11:19 +0200
commit104a31e23d146fe69fed78932e442f4894af2a86 (patch)
treeb9b2f6ffd83d1fba85361e66955673bf322d94e8 /source/Blocks/BlockVine.h
parentFixed logging in cTracer. (diff)
parentFixed iron door opening by hand (diff)
downloadcuberite-104a31e23d146fe69fed78932e442f4894af2a86.tar
cuberite-104a31e23d146fe69fed78932e442f4894af2a86.tar.gz
cuberite-104a31e23d146fe69fed78932e442f4894af2a86.tar.bz2
cuberite-104a31e23d146fe69fed78932e442f4894af2a86.tar.lz
cuberite-104a31e23d146fe69fed78932e442f4894af2a86.tar.xz
cuberite-104a31e23d146fe69fed78932e442f4894af2a86.tar.zst
cuberite-104a31e23d146fe69fed78932e442f4894af2a86.zip
Diffstat (limited to 'source/Blocks/BlockVine.h')
-rw-r--r--source/Blocks/BlockVine.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/Blocks/BlockVine.h b/source/Blocks/BlockVine.h
index 0bc935272..37d9f1a45 100644
--- a/source/Blocks/BlockVine.h
+++ b/source/Blocks/BlockVine.h
@@ -168,6 +168,13 @@ public:
return false;
}
+ virtual void OnUpdate(cWorld * a_World, int X, int Y, int Z)
+ {
+ if (a_World->GetBlock(X, Y - 1, Z) == E_BLOCK_AIR)
+ {
+ a_World->SetBlock(X, Y - 1, Z, E_BLOCK_VINES, a_World->GetBlockMeta(X, Y, Z));
+ }
+ }
virtual NIBBLETYPE MetaRotateCCW(NIBBLETYPE a_Meta) override
{