Skip to content

Commit

Permalink
Fix #46
Browse files Browse the repository at this point in the history
  • Loading branch information
LunNova committed Jun 25, 2016
1 parent 77ea7b4 commit be8f46d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public void profileTickable(ITickable tickable) {
}

private boolean shouldProfilePos(BlockPos pos) {
return pos.getX() << 4 == chunkX && pos.getZ() << 4 == chunkZ;
return pos.getX() >> 4 == chunkX && pos.getZ() >> 4 == chunkZ;
}

public void record(Object o, long time) {
Expand Down

0 comments on commit be8f46d

Please sign in to comment.