MCHPR / MCHPRS

A multithreaded Minecraft server built for redstone.
MIT License
1.56k stars 67 forks source link

Fixed Trapdoor Rotation #88

Closed TorbTorb closed 1 year ago

TorbTorb commented 1 year ago

Previously Trapdoor rotation was not working because the order of directions for the block id is different for trapdoors than for normal blocks.

Normal Blocks:

      "facing": [
        "north",
        "east",
        "south",
        "west",
        "up",
        "down"
      ]

Trapdoors;

      "facing": [
        "north",
        "south",
        "west",
        "east"
      ]
StackDoubleFlow commented 1 year ago

Seems like I had previously mistaken it for a BlockFacing property instead of BlockDirection because of the name. #78 seems to have fixed this error.