I used the Ren 'Py Save Editor Beta to edit the most recent save and copied some stats from an older save, restoring the CREED stats that were lost.
Also to fix the issue of when asking Dimitria a raise from 20$ to 30$ when her corruption is 100 and the game returns the message that she needs to be more favorable and then crashing, I did a little change to dimitria.rpy file.
Code:
"Increase wage":
if dimi_corr < 20:
"I’m definitely going to have to make her more compliant before I could force her to agree something like that!"
jump dimifavors
elif wage < 20:
mc "Hey Dimitria, I work so hard and I barely have enough to survive... I think I ought to have an increase in my wages, how about it?"
di "*sigh* ...Well, Stuart had a higher wage than you did, and I suppose you’re doing his job. I guess could change the payroll figures and still make it look right on the budget. "
mc "Thanks a lot! You won’t regret it!"
"I will now get paid $10 more per shift. "
$ wage += 10
$ daytime += 1
jump laboratory
elif wage < 30 and dimi_corr <= 80:
"She needs to be more favorable to me before she agrees to increase my wage again."
jump dimifavors
elif wage < 30 and dimi_corr >= 80:
mc "Dimitria, give me another rise."
di "B-But [mc] our budget is-"
mc "I wasn't asking."
di "Y-Yes master, I'll see what I can do."
"After cuting some irrelevant budget, she ends up increasing my wage in $10 per shift."
$ wage += 10
$ daytime += 1
jump laboratory
else:
"She already increased my wage as much as she can."
jump dimifavors
I changed just this part from the original file "elif wage < 80:" to "elif wage < 30 and dimi_corr <= 80:"
Also changed one part where it was written "jump demifavors" to "jump dimifavors" after the error message, "She needs to be more favorable to me before she agrees to increase my wage again."
I hope this helps.