diff --git a/flopy/utils/datautil.py b/flopy/utils/datautil.py index aa59a09764..0fba1bdb4b 100644 --- a/flopy/utils/datautil.py +++ b/flopy/utils/datautil.py @@ -606,7 +606,9 @@ def build_list(self, callback): (entry_point[0][-1], new_location) ) else: - entry_point[0].append(callback(entry_point[1])) + entry_point[0].append( + callback(tuple(i + val for i in entry_point[1])) + ) entry_points = new_entry_points def first_item(self):