Skip to content

Commit

Permalink
Fixes Empty Impetus not accepting pulses from the back. (#715)
Browse files Browse the repository at this point in the history
  • Loading branch information
object-Object authored Aug 20, 2024
2 parents de10fa6 + cf432c0 commit 21a344b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 21a344b

Please sign in to comment.