Forum Discussion
8 years ago
@SimGuruModSquad,
It's broke again in 1.36.102. Different code error but in the same method. Now, we have this code (in the line below what was broken previously):
created_sim_info.set_stat_value(PregnancyTracker.PREGNANCY_COMMODITY_MAP.get(sim_info.species), pregnancy_value)
That line is invalid because the "sim_info" it is using to get the species doesn't exist. It should probably be:
created_sim_info.set_stat_value(PregnancyTracker.PREGNANCY_COMMODITY_MAP.get(created_sim_info.species), pregnancy_value)
It's broke again in 1.36.102. Different code error but in the same method. Now, we have this code (in the line below what was broken previously):
created_sim_info.set_stat_value(PregnancyTracker.PREGNANCY_COMMODITY_MAP.get(sim_info.species), pregnancy_value)
That line is invalid because the "sim_info" it is using to get the species doesn't exist. It should probably be:
created_sim_info.set_stat_value(PregnancyTracker.PREGNANCY_COMMODITY_MAP.get(created_sim_info.species), pregnancy_value)
Related Content
- 3 months ago
- 3 years ago
- 4 months ago