From cf432c0809fffb9464b57e200d1b6c5bb3a678dd Mon Sep 17 00:00:00 2001 From: Skye Date: Thu, 15 Aug 2024 21:09:05 +0900 Subject: [PATCH] Fixes Empty Impetus not accepting pulses from the back. Fixes #656 --- .../hexcasting/common/blocks/circles/BlockEmptyImpetus.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/src/main/java/at/petrak/hexcasting/common/blocks/circles/BlockEmptyImpetus.java b/Common/src/main/java/at/petrak/hexcasting/common/blocks/circles/BlockEmptyImpetus.java index 07adca100d..2cac9c79f1 100644 --- a/Common/src/main/java/at/petrak/hexcasting/common/blocks/circles/BlockEmptyImpetus.java +++ b/Common/src/main/java/at/petrak/hexcasting/common/blocks/circles/BlockEmptyImpetus.java @@ -38,7 +38,7 @@ public ControlFlow acceptControlFlow(CastingImage imageIn, CircleCastEnv env, Di @Override public boolean canEnterFromDirection(Direction enterDir, BlockPos pos, BlockState bs, ServerLevel world) { - return enterDir != bs.getValue(FACING); + return enterDir != bs.getValue(FACING).getOpposite(); } @Override