Skip to content

Commit

Permalink
Fixed fetish not saving correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
NickWildish committed Sep 20, 2023
1 parent c3a51d1 commit 2ea9f3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions game/Submods/NSFW Submod/nsfw_main.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -1216,12 +1216,12 @@ init python in mas_nsfw:
# Force-update the fetish
found_fetish = False
for fetish in store.persistent._nsfw_player_fetishes:
if fetish[0] == fetish_to_save:
if fetish[0] == fetish_name:
found_fetish = True
fetish[1] = fetish_whitelist
fetish[2] = fetish_blacklist
break

if not found_fetish:
# If we get here, we didn't find the fetish
store.persistent._nsfw_player_fetishes.append([fetish_to_save, fetish_whitelist, fetish_blacklist])
store.persistent._nsfw_player_fetishes.append([fetish_name, fetish_whitelist, fetish_blacklist])

0 comments on commit 2ea9f3a

Please sign in to comment.