Skip to content

Commit

Permalink
forgot to make it static...
Browse files Browse the repository at this point in the history
  • Loading branch information
fr1kin committed Oct 14, 2018
1 parent 4491b76 commit f7a7474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/matt/forgehax/util/BlockHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static BlockTraceInfo getBlockSideTrace(Vec3d eyes, BlockPos pos, EnumFac
.orElse(null);
}

public BlockTraceInfo getVisibleBlockSideTrace(Vec3d eyes, Vec3d normal, BlockPos pos) {
public static BlockTraceInfo getVisibleBlockSideTrace(Vec3d eyes, Vec3d normal, BlockPos pos) {
return Arrays.stream(EnumFacing.values())
.map(side -> BlockHelper.getBlockSideTrace(eyes, pos, side.getOpposite()))
.filter(Objects::nonNull)
Expand Down

0 comments on commit f7a7474

Please sign in to comment.