示例#1
0
        // Externalized to Mover
        public static bool PresetRentalLotHome(Lot lot, Household house)
        {
            try
            {
                if (StoryProgression.Main != null)
                {
                    RentalHelper.SetLotHome(lot, house);
                }
            }
            catch (Exception e)
            {
                Common.Exception(lot, e);
            }

            return(true);
        }