Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Lillibilli

1
Posts
A member registered Jul 29, 2017

Recent community posts

(1 edit)

Game version: 0.4.44a

OS: Win7

Bug:  Nipple fuck and Bestiality actions not unlocked with the rest of the fetishes.

Fix:

files/scripts/sexscenes.gd
line 40
fetish2 = {code = 'fetish2', name = 'Advanced Fetish actions', actions = ['tailjob','tailpeg','tailpegtake','hbondage'], cost = 40, description = "More pervertedness.", prereq = ['fetish'], number = 5, unlockdescript = "$name agreed to go all the way with you, since there's no point stopping anymore. "},

to

fetish2 = {code = 'fetish2', name = 'Advanced Fetish actions', actions = ['tailjob','tailpeg','tailpegtake','hbondage','nipplefuck','bestiality'], cost = 40, description = "More pervertedness.", prereq = ['fetish'], number = 5, unlockdescript = "$name agreed to go all the way with you, since there's no point stopping anymore. "},

Alternative fix (retroactive):

For those wishing to retroactively fix slaves that already unlocked the advanced fetish option, add this block of code and check the sex menu of every slave you need fixed, save then remove the temporary code.
files/scripts/sexuals.gd
line 28
func _on_sexual_visibility_changed():
    slave = globals.slaves[get_tree().get_current_scene().currentslave]
    #Add this block temporarily
    if slave.sexuals.unlocks.has('fetish2'):
        if slave.sexuals.actions.has('nipplefuck') == false:
            slave.sexuals.actions['nipplefuck'] = 0
        if slave.sexuals.actions.has('bestiality') == false:
            slave.sexuals.actions['bestiality'] = 0
    #Add this block temporarily
    var tab = get_parent().tab
    var text = ''
    var button
    var allactions = []