- Feb 19, 2019
- 39
- 18
I figured it out, you need to get the event where she starts looking for work, which doesn't have any defined trigger but it's pretty random, but you can bypass is by just simply changing a value from false to true
def erica_is_looking_for_work():
return erica.event_triggers_dict.get("looking_for_work", False)
Simply change False to True and you should be able to progress.
def erica_is_looking_for_work():
return erica.event_triggers_dict.get("looking_for_work", False)
Simply change False to True and you should be able to progress.