From f5cfe302a5338bb6e9b4e200e085c276e4fce2d2 Mon Sep 17 00:00:00 2001 From: Sollace Date: Tue, 5 May 2020 22:25:24 +0200 Subject: [PATCH] Fixed chitin blocks not orienting constently --- .../minelittlepony/unicopia/block/ChiselledChitinBlock.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/com/minelittlepony/unicopia/block/ChiselledChitinBlock.java b/src/main/java/com/minelittlepony/unicopia/block/ChiselledChitinBlock.java index b7440854..0b70c4ed 100644 --- a/src/main/java/com/minelittlepony/unicopia/block/ChiselledChitinBlock.java +++ b/src/main/java/com/minelittlepony/unicopia/block/ChiselledChitinBlock.java @@ -40,9 +40,7 @@ public class ChiselledChitinBlock extends Block { @Nullable public BlockState getPlacementState(ItemPlacementContext context) { PlayerEntity player = context.getPlayer(); - - - Direction direction = player == null ? context.getSide() : context.getPlayerLookDirection().getOpposite(); + Direction direction = context.getSide(); if (player != null && player.isSneaking()) { direction = direction.getOpposite();