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))