Exemplo n.º 1
0
    def travel_to_home_lot_of_active_sim(sim_info: SimInfo):
        """travel_to_home_lot_of_active_sim(sim_info)

        Travel with the specified Sim to the home lot of the Active Sim.

        :param sim_info: The Sim to travel with.
        :type sim_info: SimInfo
        """
        lot_id = CommonHouseholdUtils.get_active_household().home_zone_id
        CommonTravelUtils.travel_to_lot(sim_info, lot_id)
Exemplo n.º 2
0
 def travel_to_home_lot_of_active_sim(sim_info: SimInfo):
     """
         Send the specified Sim to the Home Lot of the Active Sim.
     """
     lot_id = CommonHouseholdUtils.get_active_household().home_zone_id
     CommonTravelUtils.travel_to_lot(sim_info, lot_id)