Skip to content

Commit

Permalink
fix drawer rotating
Browse files Browse the repository at this point in the history
  • Loading branch information
RecursivePineapple committed Dec 30, 2024
1 parent 527e16d commit afbb19d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,9 @@ public void setValue(World world, int x, int y, int z, ForgeDirection value) {
TileEntity tile = world.getTileEntity(x, y, z);

setterFn.set(tile, value.ordinal());

tile.markDirty();
world.markBlockForUpdate(x, y, z);
}
};
} catch (Throwable t) {
Expand Down

0 comments on commit afbb19d

Please sign in to comment.