diff options
author | Alexander Harkness <me@bearbin.net> | 2020-04-08 22:35:08 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2020-04-10 15:07:16 +0200 |
commit | f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6 (patch) | |
tree | d96f25621ab462bf3af7ff7403acb54c01a70595 /src/Blocks/BlockBed.h | |
parent | Brewing stands do not have rotation (diff) | |
download | cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar.gz cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar.bz2 cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar.lz cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar.xz cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.tar.zst cuberite-f40aba941eaf69b52ac0fbe3d8cea1ea349b97a6.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockBed.h | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/src/Blocks/BlockBed.h b/src/Blocks/BlockBed.h index bedc383e1..3d35b2bf5 100644 --- a/src/Blocks/BlockBed.h +++ b/src/Blocks/BlockBed.h @@ -16,9 +16,9 @@ class cWorldInterface; class cBlockBedHandler : - public cMetaRotator<cBlockEntityHandler, 0x3, 0x02, 0x03, 0x00, 0x01, true> + public cYawRotator<cBlockEntityHandler, 0x3, 0x02, 0x03, 0x00, 0x01> { - using super = cMetaRotator<cBlockEntityHandler, 0x3, 0x02, 0x03, 0x00, 0x01, true>; + using super = cYawRotator<cBlockEntityHandler, 0x3, 0x02, 0x03, 0x00, 0x01>; public: @@ -41,24 +41,6 @@ public: - // Bed specific helper functions - static NIBBLETYPE RotationToMetaData(double a_Rotation) - { - a_Rotation += 180 + (180 / 4); // So its not aligned with axis - if (a_Rotation > 360) - { - a_Rotation -= 360; - } - - a_Rotation = (a_Rotation / 360) * 4; - - return (static_cast<NIBBLETYPE>(a_Rotation + 2)) % 4; - } - - - - - static Vector3i MetaDataToDirection(NIBBLETYPE a_MetaData) { switch (a_MetaData) |