1
0

Changed Rotater to Rotator. Added partial sign post rotation support.

This commit is contained in:
narroo 2014-03-25 17:17:05 -04:00
parent 2343b0dfbe
commit e1285eb84f
2 changed files with 12 additions and 0 deletions

View File

@ -71,6 +71,18 @@ public:
{
a_Player->GetClientHandle()->SendEditSign(a_BlockX, a_BlockY, a_BlockZ);
}
virtual NIBBLETYPE MetaRotateCW(NIBBLETYPE a_Meta) override
{
return ++a_Meta;
}
virtual NIBBLETYPE MetaRotateCCW(NIBBLETYPE a_Meta) override
{
return --a_Meta;
}
} ;