Skip to content

Commit

Permalink
Issue 5239 Simulated Relationship Behavior Fixes - Dev Review Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
psikomonkie committed Nov 24, 2024
1 parent 14e3ec4 commit f8c02c7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,7 @@ public List<Person> birthHistoric(final Campaign campaign, final LocalDate today
// set education based on age
if(baby.getAge(today) < 16) {
baby.setEduHighestEducation(EducationLevel.EARLY_CHILDHOOD);
}
else {
} else {
baby.setEduHighestEducation(EducationLevel.HIGH_SCHOOL);
}

Expand Down

0 comments on commit f8c02c7

Please sign in to comment.