Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Ahiro

2
Posts
A member registered Jun 18, 2020

Recent community posts

That's a known Arics bug. Best way to fix it right now is to go edit your "files\scripts\person\person.gd" file.
Search for

rvar = ' (' || race_display || ')'

and replace it with

rvar = ' (' + race_display + ')'

and that will fix mixed children being displayed improperly. Alternatively you could edit your save file and change all problematic characters from mixed race to pure blooded.

I'm sure you've already found this, but the fix for "broken" Hybrid or Mixed characters is pretty simple. In case you haven't or if anyone (like me) can't wait for the next update, all you have to do is go to your "files\scripts\person\person.gd" file and change line 1654 from

rvar = ' (' || race_display || ')'

to

rvar = ' (' + race_display + ')'


Cheers, appreciate your work!