diff --git a/src/lattice.cpp b/src/lattice.cpp index 314670939d..40f30af2c7 100644 --- a/src/lattice.cpp +++ b/src/lattice.cpp @@ -835,12 +835,6 @@ const std::array HexLattice::get_indices(Position r, Direction u) const { - - // The implementation for HexLattice currently doesn't use direction - // information. As a result, we move the position slightly forward to - // determine what lattice index the particle is most likely to be in. - r += TINY_BIT * u; - // Offset the xyz by the lattice center. Position r_o {r.x - center_.x, r.y - center_.y, r.z}; if (is_3d_) {r_o.z -= center_.z;}