8 years ago
@SimGuruModSquad: Core Script need updating...Just say no to LE's! :)
Hi! Thought I'd let you know so you can pass along wherever it needs to go, there is a place in the core scripts that has an incorrect import module path specified. In filters.tunable.py, in the PregnancyFilterTerm.conform_sim_info_to_filter_term method, there is a line that loads the PregnancyTracker and is using the old path for it:
from interactions.utils.pregnancy import PregnancyTracker
It should be using the current path for PregnancyTracker, which is:
from sims.pregnancy.pregnancy_tracker import PregnancyTracker
This will generate a lot of LastException.txt errors when the active Doctor career is in use and the active Sim is waiting for a pregnant Sim to show-up for them to deliver the baby and get past that step in their career tasks.
Thanks!
from interactions.utils.pregnancy import PregnancyTracker
It should be using the current path for PregnancyTracker, which is:
from sims.pregnancy.pregnancy_tracker import PregnancyTracker
This will generate a lot of LastException.txt errors when the active Doctor career is in use and the active Sim is waiting for a pregnant Sim to show-up for them to deliver the baby and get past that step in their career tasks.
Thanks!