Skip to content

Commit

Permalink
ran spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
fr1kin committed Oct 14, 2018
1 parent 92d65e2 commit 075ea73
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/com/matt/forgehax/mods/AutoPlace.java
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,10 @@ public void onLocalPlayerMovementUpdate(Local state) {
if (items.isNull()) return;

final Vec3d eyes = LocalPlayerUtils.getEyePos();
final Vec3d dir = client_angles.get() ? LocalPlayerUtils.getDirectionVector() : LocalPlayerUtils.getServerDirectionVector();
final Vec3d dir =
client_angles.get()
? LocalPlayerUtils.getDirectionVector()
: LocalPlayerUtils.getServerDirectionVector();

List<UniqueBlock> blocks =
BlockHelper.getBlocksInRadius(eyes, getPlayerController().getBlockReachDistance())
Expand Down

0 comments on commit 075ea73

Please sign in to comment.