diff --git a/pokemongo_bot/cell_workers/follow_path.py b/pokemongo_bot/cell_workers/follow_path.py index 0ab0a62abc..a99e8623ed 100644 --- a/pokemongo_bot/cell_workers/follow_path.py +++ b/pokemongo_bot/cell_workers/follow_path.py @@ -19,7 +19,7 @@ def initialize(self): if self.path_start_mode == 'closest': self.ptr = self.find_closest_point_idx(self.points) - + else: self.ptr = 0 @@ -83,7 +83,7 @@ def find_closest_point_idx(self, points): botlng = self.bot.api._position_lng lat = float(point['lat']) lng = float(point['lng']) - + dist = distance( botlat, botlng, @@ -137,7 +137,7 @@ def work(self): self.emit_event( 'position_update', - formatted="Teleported from {last_position} to {current_position} ({distance} {distance_unit})", + formatted="Walking from {last_position} to {current_position} ({distance} {distance_unit})", data={ 'last_position': (last_lat, last_lng, 0), 'current_position': (lat, lng, 0),