- Jan 16, 2018
- 122
- 64
Thanks again UnknownPokemon.The schedule is a bug. This is due to the python default shallow and deep copy is not enough. In the bug fixes mod this was fixed.
Sounds to be your game bugged and multiple pregnancy are somehow active for one person. I just recommend killing all pregnancys. But there no fix for there schedule once pregnant_finish_announce_person is called on them unless you change it yourself.
To remove pregnancys. On each pregnant person do.
person.event_triggers_dict["preg_old_schedule"] = person.schedule
call pregnant_finish_person(person)
now do
for event_index, event_crisis in enumerate(mc.business.mandatory_morning_crises_list):
print(event_crisis.name + " is at Index " + event_index)
for every pregnancy event do
del mc.business.mandatory_morning_crises_list[x]
Start from highest to lowest. Index numbers change when you edit the list.
It seems like a great puzzle, but sadly I'm not near my computer for the next week or so, so I can't try it out yet.
I also saw that pregnancy issues were addressed in the latest update, so maybe that'll solve the problems although figuring out the hacks is half the fun. Also, I'll probably wait a few more updates before starting again, so I'll have time to play with this.
Thanks for the tutelage,
Minoin!