His line numbers don't match expansion.gd v0.08. He is having problems with installation. It would be best to have him try to recall his exact steps of re-installation.
Viewing post in Aric's Expansion Rebred
Nope. Complete new install, new folder, deleted everything, deleted everything from AppData...
And if you're wondering about line number..I did tweak fetishes a tad
func setFetishes(person):
#Sets Fetishes
var fetishdict = person.fetish
var temp
for i in globals.fetishesarray:
if !fetishdict.has(i):
fetishdict[i] = "none"
if fetishdict[i] == "none" || fetishdict[i] == null:
temp = rand_range(0,globals.fetishopinion.size()-2)
#Racial Additions
if person.findRace(['Taurus']) && str(i) in ['lactation','bemilked']:
temp += round(rand_range(0,2))
elif person.findRace(['Goblin','Bunny']) && str(i) == 'pregnancy':
temp += round(rand_range(0,2))
elif person.findRace(['Cat','Slime','Fox']) && str(i) in ['drinkcum','drinkmilk']:
temp += round(rand_range(0,2))
elif person.findRace(['Wolf','Demon']) && str(i) in ['dominance','exhibitionism']:
temp += round(rand_range(0,2))
elif person.findRace(['Seraph','Gnome']) && str(i) in ['submission','bondage']:
temp += round(rand_range(0,2))
The error messages are pretty useless without that bit of information, since the line numbers are the only way to locate the problem.
Chances are you have the same problem as this guy, I've provided a solution here: https://itch.io/post/1044647