Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

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