Forum Discussion
After looking into this, I think I know what is going on. When you load into build mode without first loading into live mode (so directly from manage worlds), there is no active household loaded. The error is a result of the game trying to return a specific type of bucks tracker for the active household (in this instance, for recycled materials), but it not knowing what to do when there is no active household (see the code in the spoiler below from the bucks_utils.py):
def get_tracker_for_bucks_type(cls, bucks_type, owner_id=None, add_if_none=False): bucks_tracker_type = BucksUtils.BUCK_TYPE_TO_TRACKER_MAP.get(bucks_type) if owner_id is None: active_household = services.active_household() return active_household.bucks_tracker # there is no check here for what to do if active_household is None if bucks_tracker_type == BucksTrackerType.HOUSEHOLD: sim_info = services.sim_info_manager().get(owner_id) if sim_info is None: active_household = services.active_household() return active_household.bucks_tracker # same issue here if sim_info.household is None: return return sim_info.household.bucks_tracker
A way to solve this would be to add an if statement for when the active_household is None (ie for when it's not loaded, like when you load directly into build mode from manage worlds); for example:
if active_household is None: return
- karoschmitz2 years agoSeasoned Veteran
Dear @thunder11433 I saw you created a lot of mods to prevent / fix similar game issues, is there potentially a way to fix this one with a mod too? 🤞🙏 I'm worried EA will not fix this one anytime soon, as there are so few me-toos on it, and it's so disruptive 😢
Thank you so much in advance for considering 🙏
- karoschmitz6 months agoSeasoned Veteran
OMG I'm sooo happy, Kuttoe made a bug fix mod for this freezing bug for us "Recycler & Fabricator Move Fix": https://kuttoe.itch.io/mini-mods-bug-fixes
Thank you soooo much Kuttoe!!!
About The Sims 4 Bug Reports - Archive
Recent Discussions
- 2 days ago