1
0

Vines now spread when updated

This commit is contained in:
Tiger Wang 2013-08-24 22:00:24 +01:00
parent 2081b6dfde
commit 11ca2f96a0

View File

@ -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
{