agent/decision_modules/navigator.py [170:176]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                existing_loc = self.find_most_similar_loc(look, existing_locs)
            else:
                existing_loc = existing_locs[0]
            dbg("[NAV](revisited-location) {}".format(existing_loc.name))
            kg.add_connection(Connection(curr_loc, action, existing_loc))
            kg.player_location = existing_loc
            return
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



agent/decision_modules/navigator.py [207:213]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        existing_loc = self.find_most_similar_loc(look, existing_locs)
                    else:
                        existing_loc = existing_locs[0]
                    dbg("[NAV](revisited-location) {}".format(existing_loc.name))
                    kg.add_connection(Connection(curr_loc, action, existing_loc))
                    kg.player_location = existing_loc
                    return
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



