From af6310b13ed162548bc69f4c6c38890e3dc32aeb Mon Sep 17 00:00:00 2001 From: Sebastian Hartte Date: Mon, 3 Oct 2016 00:33:43 +0200 Subject: [PATCH] Fixes #2391. Initial forward/up could never be null thus the initial orientation was never set. --- src/main/java/appeng/block/AEBaseItemBlock.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/java/appeng/block/AEBaseItemBlock.java b/src/main/java/appeng/block/AEBaseItemBlock.java index 5bc7c9a82..fc0b0876d 100644 --- a/src/main/java/appeng/block/AEBaseItemBlock.java +++ b/src/main/java/appeng/block/AEBaseItemBlock.java @@ -189,10 +189,7 @@ public class AEBaseItemBlock extends ItemBlock if( ori.canBeRotated() && !this.blockType.hasCustomRotation() ) { - if( ori.getForward() == null || ori.getUp() == null ) - { - ori.setOrientation( forward, up ); - } + ori.setOrientation( forward, up ); } if( tile instanceof IGridProxyable )