Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

I applied the fix and it worked to quell the problem, for the most part, but now I'm getting these and the day end doesn't work properly anymore (no report window opening, tasks/jobs probably aren't working though some seem to, so not entirely sure there).

SCRIPT ERROR: dailyLactation: Invalid get index 'lactationstressenabled' (on base: 'Dictionary').
          At: user://mods/AricsExpansion/scripts/aricsexpansion/expansion.gd:2550
SCRIPT ERROR: dailyUpdate: Invalid operands 'String' and 'Nil' in operator '+'.
          At: user://mods/AricsExpansion/scripts/aricsexpansion/expansion.gd:1712
SCRIPT ERROR: _on_end_pressed: Invalid operands 'String' and 'Nil' in operator '+'.
          At: res://files/scripts/Mansion.gd:712

Seems that some new code slipped into the hotfix, and the old code doesn't recognized it. Try replacing:

"elif globals.expansion.settings.lactationstressenabled == true:"

with:

"else:"

Worked like a charm, thank you!

That's the problem with trying to bugfix mid update. Thanks Ank!

Replacing "true" with "else" at that place causes this to happen for me:
It now wont open the slaves personal pages when you click them.

You made a mistake on that line, based on your comment you replaced part of the line with "else". But the intended fix requires you to replace the entire text on that line with "else:".

Ohhh...ok my bad.