summaryrefslogtreecommitdiffstats
path: root/source/Vine.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-22 20:00:05 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-22 20:00:05 +0200
commit793ae5359de3680ea0b58fa37f07c81d2605ab12 (patch)
treeda4b9d407b6188de363a0b67b43d7d133cfc0da1 /source/Vine.h
parentMade DeepSnow remove flowers and mushrooms while snowing. (diff)
downloadcuberite-793ae5359de3680ea0b58fa37f07c81d2605ab12.tar
cuberite-793ae5359de3680ea0b58fa37f07c81d2605ab12.tar.gz
cuberite-793ae5359de3680ea0b58fa37f07c81d2605ab12.tar.bz2
cuberite-793ae5359de3680ea0b58fa37f07c81d2605ab12.tar.lz
cuberite-793ae5359de3680ea0b58fa37f07c81d2605ab12.tar.xz
cuberite-793ae5359de3680ea0b58fa37f07c81d2605ab12.tar.zst
cuberite-793ae5359de3680ea0b58fa37f07c81d2605ab12.zip
Diffstat (limited to '')
-rw-r--r--source/Vine.h24
1 files changed, 21 insertions, 3 deletions
diff --git a/source/Vine.h b/source/Vine.h
index d4bc99c1a..2a43cba19 100644
--- a/source/Vine.h
+++ b/source/Vine.h
@@ -4,7 +4,7 @@ class cVine //tolua_export
{ //tolua_export
public:
- static char DirectionToMetaData( char a_Direction ) //tolua_export
+ static NIBBLETYPE DirectionToMetaData( char a_Direction ) //tolua_export
{ //tolua_export
switch (a_Direction)
{
@@ -17,7 +17,25 @@ public:
case 0x5:
return 0x2;
default:
- return 0xf;
+ return 0x0;
};
} //tolua_export
-}; //tolua_export \ No newline at end of file
+
+ static char MetaDataToDirection(NIBBLETYPE a_MetaData ) //tolua_export
+ { //tolua_export
+ switch(a_MetaData)
+ {
+ case 0x1:
+ return 0x2;
+ case 0x4:
+ return 0x3;
+ case 0x8:
+ return 0x4;
+ case 0x2:
+ return 0x5;
+ default:
+ return 0x1;
+ };
+ } //tolua_export
+
+}; //tolua_export