Skip to content

Commit

Permalink
Fixes Empty Impetus not accepting pulses from the back.
Browse files Browse the repository at this point in the history
Fixes #656
  • Loading branch information
vgskye committed Aug 15, 2024
1 parent de10fa6 commit cf432c0
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 cf432c0

Please sign in to comment.